|
556 | 556 | "description": "Fragment with hash in value", |
557 | 557 | "data": "#fragment#with#hashes", |
558 | 558 | "valid": true |
| 559 | + }, |
| 560 | + { |
| 561 | + "description": "URL with fragment without path", |
| 562 | + "data": "http://example.com#fragment", |
| 563 | + "valid": true |
| 564 | + }, |
| 565 | + { |
| 566 | + "description": "URL with query without path", |
| 567 | + "data": "http://example.com?query=value", |
| 568 | + "valid": true |
| 569 | + }, |
| 570 | + { |
| 571 | + "description": "URL with query and fragment without path", |
| 572 | + "data": "http://example.com?query=value#fragment", |
| 573 | + "valid": true |
| 574 | + }, |
| 575 | + { |
| 576 | + "description": "URL with empty fragment without path", |
| 577 | + "data": "http://example.com#", |
| 578 | + "valid": true |
| 579 | + }, |
| 580 | + { |
| 581 | + "description": "URL with empty query without path", |
| 582 | + "data": "http://example.com?", |
| 583 | + "valid": true |
| 584 | + }, |
| 585 | + { |
| 586 | + "description": "HTTPS with fragment without path", |
| 587 | + "data": "https://secure.example.com#section", |
| 588 | + "valid": true |
| 589 | + }, |
| 590 | + { |
| 591 | + "description": "HTTPS with query without path", |
| 592 | + "data": "https://secure.example.com?token=abc123", |
| 593 | + "valid": true |
| 594 | + }, |
| 595 | + { |
| 596 | + "description": "FTP with fragment without path", |
| 597 | + "data": "ftp://ftp.example.com#readme", |
| 598 | + "valid": true |
| 599 | + }, |
| 600 | + { |
| 601 | + "description": "FTP with query without path", |
| 602 | + "data": "ftp://ftp.example.com?mode=binary", |
| 603 | + "valid": true |
| 604 | + }, |
| 605 | + { |
| 606 | + "description": "Network path with query without path", |
| 607 | + "data": "//example.com?search=test", |
| 608 | + "valid": true |
| 609 | + }, |
| 610 | + { |
| 611 | + "description": "Network path with fragment without path", |
| 612 | + "data": "//example.com#top", |
| 613 | + "valid": true |
| 614 | + }, |
| 615 | + { |
| 616 | + "description": "Network path with query and fragment without path", |
| 617 | + "data": "//example.com?q=1#section", |
| 618 | + "valid": true |
| 619 | + }, |
| 620 | + { |
| 621 | + "description": "IPv4 URL with fragment without path", |
| 622 | + "data": "http://192.168.1.1#section", |
| 623 | + "valid": true |
| 624 | + }, |
| 625 | + { |
| 626 | + "description": "IPv4 URL with query without path", |
| 627 | + "data": "http://192.168.1.1?param=value", |
| 628 | + "valid": true |
| 629 | + }, |
| 630 | + { |
| 631 | + "description": "IPv6 URL with fragment without path", |
| 632 | + "data": "http://[::1]#anchor", |
| 633 | + "valid": true |
| 634 | + }, |
| 635 | + { |
| 636 | + "description": "IPv6 URL with query without path", |
| 637 | + "data": "http://[::1]?key=val", |
| 638 | + "valid": true |
| 639 | + }, |
| 640 | + { |
| 641 | + "description": "URL with port and fragment without path", |
| 642 | + "data": "http://example.com:8080#section", |
| 643 | + "valid": true |
| 644 | + }, |
| 645 | + { |
| 646 | + "description": "URL with port and query without path", |
| 647 | + "data": "http://example.com:8080?search=term", |
| 648 | + "valid": true |
| 649 | + }, |
| 650 | + { |
| 651 | + "description": "URL with userinfo and fragment without path", |
| 652 | + "data": "http://user@example.com#top", |
| 653 | + "valid": true |
| 654 | + }, |
| 655 | + { |
| 656 | + "description": "URL with userinfo and query without path", |
| 657 | + "data": "http://user@example.com?q=test", |
| 658 | + "valid": true |
| 659 | + }, |
| 660 | + { |
| 661 | + "description": "URL with full userinfo and query without path", |
| 662 | + "data": "http://user:pass@example.com?param=value", |
| 663 | + "valid": true |
| 664 | + }, |
| 665 | + { |
| 666 | + "description": "URL with full userinfo and fragment without path", |
| 667 | + "data": "http://user:pass@example.com#anchor", |
| 668 | + "valid": true |
| 669 | + }, |
| 670 | + { |
| 671 | + "description": "Complex URL with all authority components and query without path", |
| 672 | + "data": "http://user:pass@example.com:8080?key=value", |
| 673 | + "valid": true |
| 674 | + }, |
| 675 | + { |
| 676 | + "description": "Complex URL with all authority components and fragment without path", |
| 677 | + "data": "http://user:pass@example.com:8080#section", |
| 678 | + "valid": true |
| 679 | + }, |
| 680 | + { |
| 681 | + "description": "URL with multiple query parameters without path", |
| 682 | + "data": "http://example.com?a=1&b=2&c=3", |
| 683 | + "valid": true |
| 684 | + }, |
| 685 | + { |
| 686 | + "description": "URL with percent-encoded query without path", |
| 687 | + "data": "http://example.com?key=value%20here", |
| 688 | + "valid": true |
| 689 | + }, |
| 690 | + { |
| 691 | + "description": "URL with complex query encoding without path", |
| 692 | + "data": "http://example.com?a=b&c=%2Fd%2Fe", |
| 693 | + "valid": true |
| 694 | + }, |
| 695 | + { |
| 696 | + "description": "URL with fragment containing special characters without path", |
| 697 | + "data": "http://example.com#section-1.2", |
| 698 | + "valid": true |
| 699 | + }, |
| 700 | + { |
| 701 | + "description": "URL with empty query and non-empty fragment without path", |
| 702 | + "data": "http://example.com?#fragment", |
| 703 | + "valid": true |
| 704 | + }, |
| 705 | + { |
| 706 | + "description": "Custom scheme with fragment without path", |
| 707 | + "data": "custom://example.com#section", |
| 708 | + "valid": true |
| 709 | + }, |
| 710 | + { |
| 711 | + "description": "Custom scheme with query without path", |
| 712 | + "data": "custom://example.com?param=value", |
| 713 | + "valid": true |
559 | 714 | } |
560 | 715 | ] |
561 | 716 | } |
0 commit comments