Last active
January 8, 2024 00:06
-
-
Save jeremyroman/8d99c4667490800dbb3c46d3d26b4885 to your computer and use it in GitHub Desktop.
diff when applying URL string syntax (wildcard beyond specified patterns) and base URL inheritance changes, including no implicit username/password
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
["https:"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https:", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https:#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
@@ -30,8 +30,8 @@ | |
["https:#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
@@ -40,28 +40,28 @@ | |
["https:?search"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:?search#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
@@ -70,8 +70,8 @@ | |
["https:?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
@@ -80,28 +80,28 @@ | |
["https:/path"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:/path#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
@@ -110,8 +110,8 @@ | |
["https:/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
@@ -120,28 +120,28 @@ | |
["https:/path?search"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:/path?search#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
@@ -150,8 +150,8 @@ | |
["https:/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
@@ -160,28 +160,28 @@ | |
["https::8443"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https::8443", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https::8443#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
@@ -190,8 +190,8 @@ | |
["https::8443#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
@@ -200,28 +200,28 @@ | |
["https::8443?search"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https::8443?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https::8443?search#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
@@ -230,8 +230,8 @@ | |
["https::8443?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
@@ -240,28 +240,28 @@ | |
["https::8443/path"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https::8443/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https::8443/path#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
@@ -270,8 +270,8 @@ | |
["https::8443/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
@@ -280,28 +280,28 @@ | |
["https::8443/path?search"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https::8443/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https::8443/path?search#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
@@ -310,8 +310,8 @@ | |
["https::8443/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
@@ -323,21 +323,21 @@ | |
["https:example.com", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:example.com#hash"] | |
<error> | |
["https:example.com#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com' | |
@@ -349,21 +349,21 @@ | |
["https:example.com?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:example.com?search#hash"] | |
<error> | |
["https:example.com?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com' | |
@@ -375,21 +375,21 @@ | |
["https:example.com/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:example.com/path#hash"] | |
<error> | |
["https:example.com/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com/path' | |
@@ -401,21 +401,21 @@ | |
["https:example.com/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:example.com/path?search#hash"] | |
<error> | |
["https:example.com/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com/path' | |
@@ -475,21 +475,21 @@ | |
["https:user@", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:user@#hash"] | |
<error> | |
["https:user@#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@' | |
@@ -501,21 +501,21 @@ | |
["https:user@?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:user@?search#hash"] | |
<error> | |
["https:user@?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@' | |
@@ -527,21 +527,21 @@ | |
["https:user@/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:user@/path#hash"] | |
<error> | |
["https:user@/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@/path' | |
@@ -553,21 +553,21 @@ | |
["https:user@/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:user@/path?search#hash"] | |
<error> | |
["https:user@/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@/path' | |
@@ -627,21 +627,21 @@ | |
["https:user@example.com", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:user@example.com#hash"] | |
<error> | |
["https:user@example.com#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com' | |
@@ -653,21 +653,21 @@ | |
["https:user@example.com?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:user@example.com?search#hash"] | |
<error> | |
["https:user@example.com?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com' | |
@@ -679,21 +679,21 @@ | |
["https:user@example.com/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:user@example.com/path#hash"] | |
<error> | |
["https:user@example.com/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com/path' | |
@@ -705,21 +705,21 @@ | |
["https:user@example.com/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:user@example.com/path?search#hash"] | |
<error> | |
["https:user@example.com/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com/path' | |
@@ -776,28 +776,28 @@ | |
["https:user\\:pass@"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:user\\:pass@", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:user\\:pass@#hash"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@' | |
@@ -806,8 +806,8 @@ | |
["https:user\\:pass@#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@' | |
@@ -816,28 +816,28 @@ | |
["https:user\\:pass@?search"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:user\\:pass@?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:user\\:pass@?search#hash"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@' | |
@@ -846,8 +846,8 @@ | |
["https:user\\:pass@?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@' | |
@@ -856,28 +856,28 @@ | |
["https:user\\:pass@/path"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:user\\:pass@/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:user\\:pass@/path#hash"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@/path' | |
@@ -886,8 +886,8 @@ | |
["https:user\\:pass@/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@/path' | |
@@ -896,28 +896,28 @@ | |
["https:user\\:pass@/path?search"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:user\\:pass@/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:user\\:pass@/path?search#hash"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@/path' | |
@@ -926,8 +926,8 @@ | |
["https:user\\:pass@/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@/path' | |
@@ -984,28 +984,28 @@ | |
["https:user\\:pass@example.com"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@example.com' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:user\\:pass@example.com", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@example.com' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:user\\:pass@example.com#hash"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@example.com' | |
@@ -1014,8 +1014,8 @@ | |
["https:user\\:pass@example.com#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@example.com' | |
@@ -1024,28 +1024,28 @@ | |
["https:user\\:pass@example.com?search"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@example.com' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:user\\:pass@example.com?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@example.com' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:user\\:pass@example.com?search#hash"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@example.com' | |
@@ -1054,8 +1054,8 @@ | |
["https:user\\:pass@example.com?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@example.com' | |
@@ -1064,28 +1064,28 @@ | |
["https:user\\:pass@example.com/path"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@example.com/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:user\\:pass@example.com/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@example.com/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:user\\:pass@example.com/path#hash"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@example.com/path' | |
@@ -1094,8 +1094,8 @@ | |
["https:user\\:pass@example.com/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@example.com/path' | |
@@ -1104,28 +1104,28 @@ | |
["https:user\\:pass@example.com/path?search"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@example.com/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:user\\:pass@example.com/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@example.com/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:user\\:pass@example.com/path?search#hash"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'pass@example.com/path' | |
@@ -1134,8 +1134,8 @@ | |
["https:user\\:pass@example.com/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https:user' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/resources/pass@example.com/path' | |
@@ -1192,28 +1192,28 @@ | |
["https://"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
@@ -1222,8 +1222,8 @@ | |
["https://#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
@@ -1232,28 +1232,28 @@ | |
["https://?search"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://?search#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
@@ -1262,8 +1262,8 @@ | |
["https://?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
@@ -1272,28 +1272,28 @@ | |
["https:///path"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:///path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https:///path#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
@@ -1302,8 +1302,8 @@ | |
["https:///path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
@@ -1312,28 +1312,28 @@ | |
["https:///path?search"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:///path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https:///path?search#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
@@ -1342,8 +1342,8 @@ | |
["https:///path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
@@ -1352,28 +1352,28 @@ | |
["https://:8443"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://:8443", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://:8443#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
@@ -1382,8 +1382,8 @@ | |
["https://:8443#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
@@ -1392,28 +1392,28 @@ | |
["https://:8443?search"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://:8443?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://:8443?search#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
@@ -1422,8 +1422,8 @@ | |
["https://:8443?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
@@ -1432,28 +1432,28 @@ | |
["https://:8443/path"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://:8443/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://:8443/path#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
@@ -1462,8 +1462,8 @@ | |
["https://:8443/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
@@ -1472,28 +1472,28 @@ | |
["https://:8443/path?search"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://:8443/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://:8443/path?search#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
@@ -1502,8 +1502,8 @@ | |
["https://:8443/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
@@ -1512,28 +1512,28 @@ | |
["https://example.com"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://example.com", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://example.com#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
@@ -1542,8 +1542,8 @@ | |
["https://example.com#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
@@ -1552,28 +1552,28 @@ | |
["https://example.com?search"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://example.com?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://example.com?search#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
@@ -1582,8 +1582,8 @@ | |
["https://example.com?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
@@ -1592,28 +1592,28 @@ | |
["https://example.com/path"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://example.com/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://example.com/path#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
@@ -1622,8 +1622,8 @@ | |
["https://example.com/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
@@ -1632,28 +1632,28 @@ | |
["https://example.com/path?search"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://example.com/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://example.com/path?search#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
@@ -1662,8 +1662,8 @@ | |
["https://example.com/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
@@ -1672,28 +1672,28 @@ | |
["https://example.com:8443"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://example.com:8443", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://example.com:8443#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/' | |
@@ -1702,8 +1702,8 @@ | |
["https://example.com:8443#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/' | |
@@ -1712,28 +1712,28 @@ | |
["https://example.com:8443?search"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://example.com:8443?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://example.com:8443?search#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/' | |
@@ -1742,8 +1742,8 @@ | |
["https://example.com:8443?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/' | |
@@ -1752,28 +1752,28 @@ | |
["https://example.com:8443/path"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://example.com:8443/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://example.com:8443/path#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
@@ -1782,8 +1782,8 @@ | |
["https://example.com:8443/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
@@ -1792,28 +1792,28 @@ | |
["https://example.com:8443/path?search"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://example.com:8443/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://example.com:8443/path?search#hash"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
@@ -1822,8 +1822,8 @@ | |
["https://example.com:8443/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
@@ -1833,27 +1833,27 @@ | |
["https://user@"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user@", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user@#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
@@ -1863,7 +1863,7 @@ | |
["https://user@#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
@@ -1873,27 +1873,27 @@ | |
["https://user@?search"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@?search#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
@@ -1903,7 +1903,7 @@ | |
["https://user@?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/' | |
@@ -1913,27 +1913,27 @@ | |
["https://user@/path"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user@/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user@/path#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
@@ -1943,7 +1943,7 @@ | |
["https://user@/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
@@ -1953,27 +1953,27 @@ | |
["https://user@/path?search"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@/path?search#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
@@ -1983,7 +1983,7 @@ | |
["https://user@/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/path' | |
@@ -1993,27 +1993,27 @@ | |
["https://user@:8443"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user@:8443", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user@:8443#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
@@ -2023,7 +2023,7 @@ | |
["https://user@:8443#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
@@ -2033,27 +2033,27 @@ | |
["https://user@:8443?search"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@:8443?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@:8443?search#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
@@ -2063,7 +2063,7 @@ | |
["https://user@:8443?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/' | |
@@ -2073,27 +2073,27 @@ | |
["https://user@:8443/path"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user@:8443/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user@:8443/path#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
@@ -2103,7 +2103,7 @@ | |
["https://user@:8443/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
@@ -2113,27 +2113,27 @@ | |
["https://user@:8443/path?search"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@:8443/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@:8443/path?search#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
@@ -2143,7 +2143,7 @@ | |
["https://user@:8443/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname '' | |
port '8443' | |
pathname '/path' | |
@@ -2153,27 +2153,27 @@ | |
["https://user@example.com"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user@example.com", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user@example.com#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
@@ -2183,7 +2183,7 @@ | |
["https://user@example.com#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
@@ -2193,27 +2193,27 @@ | |
["https://user@example.com?search"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@example.com?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@example.com?search#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
@@ -2223,7 +2223,7 @@ | |
["https://user@example.com?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
@@ -2233,27 +2233,27 @@ | |
["https://user@example.com/path"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user@example.com/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user@example.com/path#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
@@ -2263,7 +2263,7 @@ | |
["https://user@example.com/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
@@ -2273,27 +2273,27 @@ | |
["https://user@example.com/path?search"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@example.com/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@example.com/path?search#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
@@ -2303,7 +2303,7 @@ | |
["https://user@example.com/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
@@ -2313,27 +2313,27 @@ | |
["https://user@example.com:8443"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user@example.com:8443", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user@example.com:8443#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/' | |
@@ -2343,7 +2343,7 @@ | |
["https://user@example.com:8443#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/' | |
@@ -2353,27 +2353,27 @@ | |
["https://user@example.com:8443?search"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@example.com:8443?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@example.com:8443?search#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/' | |
@@ -2383,7 +2383,7 @@ | |
["https://user@example.com:8443?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/' | |
@@ -2393,27 +2393,27 @@ | |
["https://user@example.com:8443/path"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user@example.com:8443/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user@example.com:8443/path#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
@@ -2423,7 +2423,7 @@ | |
["https://user@example.com:8443/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
@@ -2433,27 +2433,27 @@ | |
["https://user@example.com:8443/path?search"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@example.com:8443/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user@example.com:8443/path?search#hash"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
@@ -2463,7 +2463,7 @@ | |
["https://user@example.com:8443/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
username 'user' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
@@ -2476,9 +2476,9 @@ | |
password 'pass' | |
hostname '' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -2486,9 +2486,9 @@ | |
password 'pass' | |
hostname '' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@#hash"] | |
protocol 'https' | |
@@ -2518,7 +2518,7 @@ | |
port '' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -2528,7 +2528,7 @@ | |
port '' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@?search#hash"] | |
protocol 'https' | |
@@ -2557,8 +2557,8 @@ | |
hostname '' | |
port '' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -2567,8 +2567,8 @@ | |
hostname '' | |
port '' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@/path#hash"] | |
protocol 'https' | |
@@ -2598,7 +2598,7 @@ | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -2608,7 +2608,7 @@ | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@/path?search#hash"] | |
protocol 'https' | |
@@ -2636,9 +2636,9 @@ | |
password 'pass' | |
hostname '' | |
port '8443' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@:8443", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -2646,9 +2646,9 @@ | |
password 'pass' | |
hostname '' | |
port '8443' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@:8443#hash"] | |
protocol 'https' | |
@@ -2678,7 +2678,7 @@ | |
port '8443' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@:8443?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -2688,7 +2688,7 @@ | |
port '8443' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@:8443?search#hash"] | |
protocol 'https' | |
@@ -2717,8 +2717,8 @@ | |
hostname '' | |
port '8443' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@:8443/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -2727,8 +2727,8 @@ | |
hostname '' | |
port '8443' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@:8443/path#hash"] | |
protocol 'https' | |
@@ -2758,7 +2758,7 @@ | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@:8443/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -2768,7 +2768,7 @@ | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@:8443/path?search#hash"] | |
protocol 'https' | |
@@ -2796,9 +2796,9 @@ | |
password 'pass' | |
hostname 'example.com' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@example.com", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -2806,9 +2806,9 @@ | |
password 'pass' | |
hostname 'example.com' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@example.com#hash"] | |
protocol 'https' | |
@@ -2838,7 +2838,7 @@ | |
port '' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@example.com?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -2848,7 +2848,7 @@ | |
port '' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@example.com?search#hash"] | |
protocol 'https' | |
@@ -2877,8 +2877,8 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@example.com/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -2887,8 +2887,8 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@example.com/path#hash"] | |
protocol 'https' | |
@@ -2918,7 +2918,7 @@ | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@example.com/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -2928,7 +2928,7 @@ | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@example.com/path?search#hash"] | |
protocol 'https' | |
@@ -2956,9 +2956,9 @@ | |
password 'pass' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@example.com:8443", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -2966,9 +2966,9 @@ | |
password 'pass' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@example.com:8443#hash"] | |
protocol 'https' | |
@@ -2998,7 +2998,7 @@ | |
port '8443' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@example.com:8443?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -3008,7 +3008,7 @@ | |
port '8443' | |
pathname '/' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@example.com:8443?search#hash"] | |
protocol 'https' | |
@@ -3037,8 +3037,8 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@example.com:8443/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -3047,8 +3047,8 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://user\\:pass@example.com:8443/path#hash"] | |
protocol 'https' | |
@@ -3078,7 +3078,7 @@ | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@example.com:8443/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
@@ -3088,7 +3088,7 @@ | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["https://user\\:pass@example.com:8443/path?search#hash"] | |
protocol 'https' | |
@@ -3115,21 +3115,21 @@ | |
["", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["#hash"] | |
<error> | |
["#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/index.html' | |
@@ -3141,21 +3141,21 @@ | |
["?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/index.html' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["?search#hash"] | |
<error> | |
["?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/index.html' | |
@@ -3167,21 +3167,21 @@ | |
["path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["path#hash"] | |
<error> | |
["path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
@@ -3193,21 +3193,21 @@ | |
["path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["path?search#hash"] | |
<error> | |
["path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
@@ -3219,21 +3219,21 @@ | |
["/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["/path#hash"] | |
<error> | |
["/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
@@ -3245,21 +3245,21 @@ | |
["/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
search 'search' | |
- hash '' | |
+ hash '*' | |
["/path?search#hash"] | |
<error> | |
["/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
@@ -3278,8 +3278,8 @@ | |
[{"baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/index.html' | |
@@ -3298,8 +3298,8 @@ | |
[{"hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/index.html' | |
@@ -3318,13 +3318,13 @@ | |
[{"search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/index.html' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -3338,8 +3338,8 @@ | |
[{"search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/index.html' | |
@@ -3358,13 +3358,13 @@ | |
[{"pathname": "path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -3378,12 +3378,12 @@ | |
[{"pathname": "path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"pathname": "path", "search": "search"}] | |
@@ -3398,13 +3398,13 @@ | |
[{"pathname": "path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -3418,8 +3418,8 @@ | |
[{"pathname": "path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
@@ -3438,13 +3438,13 @@ | |
[{"pathname": "/path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -3458,12 +3458,12 @@ | |
[{"pathname": "/path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"pathname": "/path", "search": "search"}] | |
@@ -3478,13 +3478,13 @@ | |
[{"pathname": "/path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -3498,8 +3498,8 @@ | |
[{"pathname": "/path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
@@ -3518,13 +3518,13 @@ | |
[{"port": "", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"port": "", "hash": "hash"}] | |
protocol '*' | |
@@ -3538,12 +3538,12 @@ | |
[{"port": "", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"port": "", "search": "search"}] | |
@@ -3558,13 +3558,13 @@ | |
[{"port": "", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"port": "", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -3578,11 +3578,11 @@ | |
[{"port": "", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -3598,13 +3598,13 @@ | |
[{"port": "", "pathname": "path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"port": "", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -3618,12 +3618,12 @@ | |
[{"port": "", "pathname": "path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"port": "", "pathname": "path", "search": "search"}] | |
@@ -3638,13 +3638,13 @@ | |
[{"port": "", "pathname": "path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -3658,8 +3658,8 @@ | |
[{"port": "", "pathname": "path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '' | |
pathname '/resources/path' | |
@@ -3678,13 +3678,13 @@ | |
[{"port": "", "pathname": "/path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"port": "", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -3698,12 +3698,12 @@ | |
[{"port": "", "pathname": "/path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"port": "", "pathname": "/path", "search": "search"}] | |
@@ -3718,13 +3718,13 @@ | |
[{"port": "", "pathname": "/path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -3738,8 +3738,8 @@ | |
[{"port": "", "pathname": "/path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '' | |
pathname '/path' | |
@@ -3758,13 +3758,13 @@ | |
[{"port": "8443", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"port": "8443", "hash": "hash"}] | |
protocol '*' | |
@@ -3778,12 +3778,12 @@ | |
[{"port": "8443", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"port": "8443", "search": "search"}] | |
@@ -3798,13 +3798,13 @@ | |
[{"port": "8443", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"port": "8443", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -3818,11 +3818,11 @@ | |
[{"port": "8443", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -3838,13 +3838,13 @@ | |
[{"port": "8443", "pathname": "path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -3858,12 +3858,12 @@ | |
[{"port": "8443", "pathname": "path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"port": "8443", "pathname": "path", "search": "search"}] | |
@@ -3878,13 +3878,13 @@ | |
[{"port": "8443", "pathname": "path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -3898,8 +3898,8 @@ | |
[{"port": "8443", "pathname": "path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/resources/path' | |
@@ -3918,13 +3918,13 @@ | |
[{"port": "8443", "pathname": "/path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -3938,12 +3938,12 @@ | |
[{"port": "8443", "pathname": "/path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -3958,13 +3958,13 @@ | |
[{"port": "8443", "pathname": "/path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -3978,8 +3978,8 @@ | |
[{"port": "8443", "pathname": "/path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/path' | |
@@ -3998,13 +3998,13 @@ | |
[{"hostname": "example.com", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"hostname": "example.com", "hash": "hash"}] | |
protocol '*' | |
@@ -4018,12 +4018,12 @@ | |
[{"hostname": "example.com", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"hostname": "example.com", "search": "search"}] | |
@@ -4038,13 +4038,13 @@ | |
[{"hostname": "example.com", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"hostname": "example.com", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -4058,11 +4058,11 @@ | |
[{"hostname": "example.com", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -4078,13 +4078,13 @@ | |
[{"hostname": "example.com", "pathname": "path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"hostname": "example.com", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -4098,12 +4098,12 @@ | |
[{"hostname": "example.com", "pathname": "path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"hostname": "example.com", "pathname": "path", "search": "search"}] | |
@@ -4118,13 +4118,13 @@ | |
[{"hostname": "example.com", "pathname": "path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"hostname": "example.com", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -4138,10 +4138,10 @@ | |
[{"hostname": "example.com", "pathname": "path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
hash 'hash' | |
@@ -4158,13 +4158,13 @@ | |
[{"hostname": "example.com", "pathname": "/path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"hostname": "example.com", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -4178,12 +4178,12 @@ | |
[{"hostname": "example.com", "pathname": "/path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"hostname": "example.com", "pathname": "/path", "search": "search"}] | |
@@ -4198,13 +4198,13 @@ | |
[{"hostname": "example.com", "pathname": "/path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"hostname": "example.com", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -4218,10 +4218,10 @@ | |
[{"hostname": "example.com", "pathname": "/path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
hash 'hash' | |
@@ -4238,13 +4238,13 @@ | |
[{"hostname": "example.com", "port": "", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"hostname": "example.com", "port": "", "hash": "hash"}] | |
protocol '*' | |
@@ -4258,12 +4258,12 @@ | |
[{"hostname": "example.com", "port": "", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"hostname": "example.com", "port": "", "search": "search"}] | |
@@ -4278,13 +4278,13 @@ | |
[{"hostname": "example.com", "port": "", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"hostname": "example.com", "port": "", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -4298,11 +4298,11 @@ | |
[{"hostname": "example.com", "port": "", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -4318,13 +4318,13 @@ | |
[{"hostname": "example.com", "port": "", "pathname": "path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"hostname": "example.com", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -4338,12 +4338,12 @@ | |
[{"hostname": "example.com", "port": "", "pathname": "path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"hostname": "example.com", "port": "", "pathname": "path", "search": "search"}] | |
@@ -4358,13 +4358,13 @@ | |
[{"hostname": "example.com", "port": "", "pathname": "path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"hostname": "example.com", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -4378,8 +4378,8 @@ | |
[{"hostname": "example.com", "port": "", "pathname": "path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
@@ -4398,13 +4398,13 @@ | |
[{"hostname": "example.com", "port": "", "pathname": "/path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"hostname": "example.com", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -4418,12 +4418,12 @@ | |
[{"hostname": "example.com", "port": "", "pathname": "/path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"hostname": "example.com", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -4438,13 +4438,13 @@ | |
[{"hostname": "example.com", "port": "", "pathname": "/path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"hostname": "example.com", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -4458,8 +4458,8 @@ | |
[{"hostname": "example.com", "port": "", "pathname": "/path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
@@ -4478,13 +4478,13 @@ | |
[{"hostname": "example.com", "port": "8443", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"hostname": "example.com", "port": "8443", "hash": "hash"}] | |
protocol '*' | |
@@ -4498,12 +4498,12 @@ | |
[{"hostname": "example.com", "port": "8443", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"hostname": "example.com", "port": "8443", "search": "search"}] | |
@@ -4518,13 +4518,13 @@ | |
[{"hostname": "example.com", "port": "8443", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"hostname": "example.com", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -4538,11 +4538,11 @@ | |
[{"hostname": "example.com", "port": "8443", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -4558,13 +4558,13 @@ | |
[{"hostname": "example.com", "port": "8443", "pathname": "path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"hostname": "example.com", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -4578,12 +4578,12 @@ | |
[{"hostname": "example.com", "port": "8443", "pathname": "path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"hostname": "example.com", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -4598,13 +4598,13 @@ | |
[{"hostname": "example.com", "port": "8443", "pathname": "path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"hostname": "example.com", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -4618,8 +4618,8 @@ | |
[{"hostname": "example.com", "port": "8443", "pathname": "path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
@@ -4638,13 +4638,13 @@ | |
[{"hostname": "example.com", "port": "8443", "pathname": "/path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"hostname": "example.com", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -4658,12 +4658,12 @@ | |
[{"hostname": "example.com", "port": "8443", "pathname": "/path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -4678,13 +4678,13 @@ | |
[{"hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -4698,8 +4698,8 @@ | |
[{"hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
@@ -4764,7 +4764,7 @@ | |
port '8000' | |
pathname '/resources/index.html' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -4803,8 +4803,8 @@ | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -4823,7 +4823,7 @@ | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "pathname": "path", "search": "search"}] | |
@@ -4844,7 +4844,7 @@ | |
port '8000' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -4883,8 +4883,8 @@ | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -4903,7 +4903,7 @@ | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "pathname": "/path", "search": "search"}] | |
@@ -4924,7 +4924,7 @@ | |
port '8000' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -4962,9 +4962,9 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "port": "", "hash": "hash"}] | |
protocol '*' | |
@@ -4982,8 +4982,8 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "port": "", "search": "search"}] | |
@@ -5002,9 +5002,9 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "port": "", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -5022,7 +5022,7 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -5043,8 +5043,8 @@ | |
hostname 'whatwg.org' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -5063,7 +5063,7 @@ | |
hostname 'whatwg.org' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "port": "", "pathname": "path", "search": "search"}] | |
@@ -5084,7 +5084,7 @@ | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -5123,8 +5123,8 @@ | |
hostname 'whatwg.org' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -5143,7 +5143,7 @@ | |
hostname 'whatwg.org' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -5164,7 +5164,7 @@ | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -5202,9 +5202,9 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "port": "8443", "hash": "hash"}] | |
protocol '*' | |
@@ -5222,8 +5222,8 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "port": "8443", "search": "search"}] | |
@@ -5242,9 +5242,9 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -5262,7 +5262,7 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -5283,8 +5283,8 @@ | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -5303,7 +5303,7 @@ | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -5324,7 +5324,7 @@ | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -5363,8 +5363,8 @@ | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -5383,7 +5383,7 @@ | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -5404,7 +5404,7 @@ | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -5441,10 +5441,10 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "hash": "hash"}] | |
protocol '*' | |
@@ -5460,10 +5460,10 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ hostname 'example.com' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "hostname": "example.com", "search": "search"}] | |
@@ -5481,10 +5481,10 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -5501,8 +5501,8 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -5521,10 +5521,10 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -5541,9 +5541,9 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "hostname": "example.com", "pathname": "path", "search": "search"}] | |
@@ -5561,10 +5561,10 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -5581,7 +5581,7 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
hash 'hash' | |
@@ -5601,10 +5601,10 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -5621,9 +5621,9 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "hostname": "example.com", "pathname": "/path", "search": "search"}] | |
@@ -5641,10 +5641,10 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -5661,7 +5661,7 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
hash 'hash' | |
@@ -5682,9 +5682,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "port": "", "hash": "hash"}] | |
protocol '*' | |
@@ -5702,8 +5702,8 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "hostname": "example.com", "port": "", "search": "search"}] | |
@@ -5722,9 +5722,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "port": "", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -5742,7 +5742,7 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -5763,8 +5763,8 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -5783,7 +5783,7 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "hostname": "example.com", "port": "", "pathname": "path", "search": "search"}] | |
@@ -5804,7 +5804,7 @@ | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -5843,8 +5843,8 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -5863,7 +5863,7 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -5884,7 +5884,7 @@ | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -5922,9 +5922,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "port": "8443", "hash": "hash"}] | |
protocol '*' | |
@@ -5942,8 +5942,8 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "hostname": "example.com", "port": "8443", "search": "search"}] | |
@@ -5962,9 +5962,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -5982,7 +5982,7 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -6003,8 +6003,8 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -6023,7 +6023,7 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -6044,7 +6044,7 @@ | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -6083,8 +6083,8 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -6103,7 +6103,7 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"password": "password", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -6124,7 +6124,7 @@ | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"password": "password", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -6204,7 +6204,7 @@ | |
port '8000' | |
pathname '/resources/index.html' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -6243,8 +6243,8 @@ | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -6263,7 +6263,7 @@ | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "pathname": "path", "search": "search"}] | |
@@ -6284,7 +6284,7 @@ | |
port '8000' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -6323,8 +6323,8 @@ | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -6343,7 +6343,7 @@ | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "pathname": "/path", "search": "search"}] | |
@@ -6364,7 +6364,7 @@ | |
port '8000' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -6402,9 +6402,9 @@ | |
password '*' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "port": "", "hash": "hash"}] | |
protocol '*' | |
@@ -6422,8 +6422,8 @@ | |
password '*' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "port": "", "search": "search"}] | |
@@ -6442,9 +6442,9 @@ | |
password '*' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "port": "", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -6462,7 +6462,7 @@ | |
password '*' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -6483,8 +6483,8 @@ | |
hostname 'whatwg.org' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -6503,7 +6503,7 @@ | |
hostname 'whatwg.org' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "port": "", "pathname": "path", "search": "search"}] | |
@@ -6524,7 +6524,7 @@ | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -6563,8 +6563,8 @@ | |
hostname 'whatwg.org' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -6583,7 +6583,7 @@ | |
hostname 'whatwg.org' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -6604,7 +6604,7 @@ | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -6642,9 +6642,9 @@ | |
password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "port": "8443", "hash": "hash"}] | |
protocol '*' | |
@@ -6662,8 +6662,8 @@ | |
password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "port": "8443", "search": "search"}] | |
@@ -6682,9 +6682,9 @@ | |
password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -6702,7 +6702,7 @@ | |
password '*' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -6723,8 +6723,8 @@ | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -6743,7 +6743,7 @@ | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -6764,7 +6764,7 @@ | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -6803,8 +6803,8 @@ | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -6823,7 +6823,7 @@ | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -6844,7 +6844,7 @@ | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -6881,10 +6881,10 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "hash": "hash"}] | |
protocol '*' | |
@@ -6901,9 +6901,9 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "hostname": "example.com", "search": "search"}] | |
@@ -6921,10 +6921,10 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -6941,8 +6941,8 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -6961,10 +6961,10 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -6981,9 +6981,9 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "hostname": "example.com", "pathname": "path", "search": "search"}] | |
@@ -7001,10 +7001,10 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -7021,7 +7021,7 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
hash 'hash' | |
@@ -7041,10 +7041,10 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -7061,9 +7061,9 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "hostname": "example.com", "pathname": "/path", "search": "search"}] | |
@@ -7081,10 +7081,10 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -7101,7 +7101,7 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
hash 'hash' | |
@@ -7122,9 +7122,9 @@ | |
password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "port": "", "hash": "hash"}] | |
protocol '*' | |
@@ -7142,8 +7142,8 @@ | |
password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "hostname": "example.com", "port": "", "search": "search"}] | |
@@ -7162,9 +7162,9 @@ | |
password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "port": "", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -7182,7 +7182,7 @@ | |
password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -7203,8 +7203,8 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -7223,7 +7223,7 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "hostname": "example.com", "port": "", "pathname": "path", "search": "search"}] | |
@@ -7244,7 +7244,7 @@ | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -7283,8 +7283,8 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -7303,7 +7303,7 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -7324,7 +7324,7 @@ | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -7362,9 +7362,9 @@ | |
password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "port": "8443", "hash": "hash"}] | |
protocol '*' | |
@@ -7382,8 +7382,8 @@ | |
password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "hostname": "example.com", "port": "8443", "search": "search"}] | |
@@ -7402,9 +7402,9 @@ | |
password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -7422,7 +7422,7 @@ | |
password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -7443,8 +7443,8 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -7463,7 +7463,7 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -7484,7 +7484,7 @@ | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -7523,8 +7523,8 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -7543,7 +7543,7 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -7564,7 +7564,7 @@ | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -7644,7 +7644,7 @@ | |
port '8000' | |
pathname '/resources/index.html' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -7683,8 +7683,8 @@ | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -7703,7 +7703,7 @@ | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "pathname": "path", "search": "search"}] | |
@@ -7724,7 +7724,7 @@ | |
port '8000' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -7763,8 +7763,8 @@ | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -7783,7 +7783,7 @@ | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "pathname": "/path", "search": "search"}] | |
@@ -7804,7 +7804,7 @@ | |
port '8000' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -7842,9 +7842,9 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "port": "", "hash": "hash"}] | |
protocol '*' | |
@@ -7862,8 +7862,8 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "port": "", "search": "search"}] | |
@@ -7882,9 +7882,9 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "port": "", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -7902,7 +7902,7 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -7923,8 +7923,8 @@ | |
hostname 'whatwg.org' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -7943,7 +7943,7 @@ | |
hostname 'whatwg.org' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "port": "", "pathname": "path", "search": "search"}] | |
@@ -7964,7 +7964,7 @@ | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -8003,8 +8003,8 @@ | |
hostname 'whatwg.org' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -8023,7 +8023,7 @@ | |
hostname 'whatwg.org' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -8044,7 +8044,7 @@ | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -8082,9 +8082,9 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "port": "8443", "hash": "hash"}] | |
protocol '*' | |
@@ -8102,8 +8102,8 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "port": "8443", "search": "search"}] | |
@@ -8122,9 +8122,9 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -8142,7 +8142,7 @@ | |
password 'password' | |
hostname 'whatwg.org' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -8163,8 +8163,8 @@ | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -8183,7 +8183,7 @@ | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -8204,7 +8204,7 @@ | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -8243,8 +8243,8 @@ | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -8263,7 +8263,7 @@ | |
hostname 'whatwg.org' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -8284,7 +8284,7 @@ | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -8321,10 +8321,10 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "hash": "hash"}] | |
protocol '*' | |
@@ -8341,9 +8341,9 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "hostname": "example.com", "search": "search"}] | |
@@ -8361,10 +8361,10 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -8381,8 +8381,8 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -8401,10 +8401,10 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -8421,9 +8421,9 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "hostname": "example.com", "pathname": "path", "search": "search"}] | |
@@ -8441,10 +8441,10 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -8461,7 +8461,7 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
hash 'hash' | |
@@ -8481,10 +8481,10 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -8501,9 +8501,9 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "hostname": "example.com", "pathname": "/path", "search": "search"}] | |
@@ -8521,10 +8521,10 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -8541,7 +8541,7 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
hash 'hash' | |
@@ -8562,9 +8562,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "", "hash": "hash"}] | |
protocol '*' | |
@@ -8582,8 +8582,8 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "", "search": "search"}] | |
@@ -8602,9 +8602,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -8622,7 +8622,7 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -8643,8 +8643,8 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -8663,7 +8663,7 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "", "pathname": "path", "search": "search"}] | |
@@ -8684,7 +8684,7 @@ | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -8723,8 +8723,8 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -8743,7 +8743,7 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -8764,7 +8764,7 @@ | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -8802,9 +8802,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "8443", "hash": "hash"}] | |
protocol '*' | |
@@ -8822,8 +8822,8 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "8443", "search": "search"}] | |
@@ -8842,9 +8842,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -8862,7 +8862,7 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -8883,8 +8883,8 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol '*' | |
@@ -8903,7 +8903,7 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -8924,7 +8924,7 @@ | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -8963,8 +8963,8 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol '*' | |
@@ -8983,7 +8983,7 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -9004,7 +9004,7 @@ | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"username": "user", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol '*' | |
@@ -9038,13 +9038,13 @@ | |
[{"protocol": "https", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "hash": "hash"}] | |
protocol 'https' | |
@@ -9058,12 +9058,12 @@ | |
[{"protocol": "https", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "search": "search"}] | |
@@ -9078,13 +9078,13 @@ | |
[{"protocol": "https", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -9098,11 +9098,11 @@ | |
[{"protocol": "https", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -9118,13 +9118,13 @@ | |
[{"protocol": "https", "pathname": "path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -9138,12 +9138,12 @@ | |
[{"protocol": "https", "pathname": "path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "pathname": "path", "search": "search"}] | |
@@ -9158,13 +9158,13 @@ | |
[{"protocol": "https", "pathname": "path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -9178,10 +9178,10 @@ | |
[{"protocol": "https", "pathname": "path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
hash 'hash' | |
@@ -9198,13 +9198,13 @@ | |
[{"protocol": "https", "pathname": "/path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -9218,12 +9218,12 @@ | |
[{"protocol": "https", "pathname": "/path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "pathname": "/path", "search": "search"}] | |
@@ -9238,13 +9238,13 @@ | |
[{"protocol": "https", "pathname": "/path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -9258,10 +9258,10 @@ | |
[{"protocol": "https", "pathname": "/path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
hash 'hash' | |
@@ -9278,13 +9278,13 @@ | |
[{"protocol": "https", "port": "", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "port": "", "hash": "hash"}] | |
protocol 'https' | |
@@ -9298,12 +9298,12 @@ | |
[{"protocol": "https", "port": "", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "port": "", "search": "search"}] | |
@@ -9318,13 +9318,13 @@ | |
[{"protocol": "https", "port": "", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "port": "", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -9338,11 +9338,11 @@ | |
[{"protocol": "https", "port": "", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -9358,13 +9358,13 @@ | |
[{"protocol": "https", "port": "", "pathname": "path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -9378,12 +9378,12 @@ | |
[{"protocol": "https", "port": "", "pathname": "path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "port": "", "pathname": "path", "search": "search"}] | |
@@ -9398,13 +9398,13 @@ | |
[{"protocol": "https", "port": "", "pathname": "path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -9418,9 +9418,9 @@ | |
[{"protocol": "https", "port": "", "pathname": "path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
@@ -9438,13 +9438,13 @@ | |
[{"protocol": "https", "port": "", "pathname": "/path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -9458,12 +9458,12 @@ | |
[{"protocol": "https", "port": "", "pathname": "/path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -9478,13 +9478,13 @@ | |
[{"protocol": "https", "port": "", "pathname": "/path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -9498,9 +9498,9 @@ | |
[{"protocol": "https", "port": "", "pathname": "/path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
search 'search' | |
@@ -9518,13 +9518,13 @@ | |
[{"protocol": "https", "port": "8443", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "port": "8443", "hash": "hash"}] | |
protocol 'https' | |
@@ -9538,12 +9538,12 @@ | |
[{"protocol": "https", "port": "8443", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "port": "8443", "search": "search"}] | |
@@ -9558,13 +9558,13 @@ | |
[{"protocol": "https", "port": "8443", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -9578,11 +9578,11 @@ | |
[{"protocol": "https", "port": "8443", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -9598,13 +9598,13 @@ | |
[{"protocol": "https", "port": "8443", "pathname": "path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -9618,12 +9618,12 @@ | |
[{"protocol": "https", "port": "8443", "pathname": "path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -9638,13 +9638,13 @@ | |
[{"protocol": "https", "port": "8443", "pathname": "path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -9658,9 +9658,9 @@ | |
[{"protocol": "https", "port": "8443", "pathname": "path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
@@ -9678,13 +9678,13 @@ | |
[{"protocol": "https", "port": "8443", "pathname": "/path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -9698,12 +9698,12 @@ | |
[{"protocol": "https", "port": "8443", "pathname": "/path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -9718,13 +9718,13 @@ | |
[{"protocol": "https", "port": "8443", "pathname": "/path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -9738,9 +9738,9 @@ | |
[{"protocol": "https", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
- hostname 'whatwg.org' | |
+ username '*' | |
+ password '*' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
@@ -9758,13 +9758,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "hash": "hash"}] | |
protocol 'https' | |
@@ -9778,12 +9778,12 @@ | |
[{"protocol": "https", "hostname": "example.com", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "hostname": "example.com", "search": "search"}] | |
@@ -9798,13 +9798,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -9818,11 +9818,11 @@ | |
[{"protocol": "https", "hostname": "example.com", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -9838,13 +9838,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "pathname": "path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -9858,12 +9858,12 @@ | |
[{"protocol": "https", "hostname": "example.com", "pathname": "path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "hostname": "example.com", "pathname": "path", "search": "search"}] | |
@@ -9878,13 +9878,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "pathname": "path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -9898,10 +9898,10 @@ | |
[{"protocol": "https", "hostname": "example.com", "pathname": "path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
hash 'hash' | |
@@ -9918,13 +9918,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "pathname": "/path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -9938,12 +9938,12 @@ | |
[{"protocol": "https", "hostname": "example.com", "pathname": "/path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "hostname": "example.com", "pathname": "/path", "search": "search"}] | |
@@ -9958,13 +9958,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "pathname": "/path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -9978,10 +9978,10 @@ | |
[{"protocol": "https", "hostname": "example.com", "pathname": "/path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
hash 'hash' | |
@@ -9998,13 +9998,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "port": "", "hash": "hash"}] | |
protocol 'https' | |
@@ -10018,12 +10018,12 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "hostname": "example.com", "port": "", "search": "search"}] | |
@@ -10038,13 +10038,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "port": "", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -10058,11 +10058,11 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -10078,13 +10078,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "", "pathname": "path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -10098,12 +10098,12 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "", "pathname": "path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "hostname": "example.com", "port": "", "pathname": "path", "search": "search"}] | |
@@ -10118,13 +10118,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "", "pathname": "path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -10138,8 +10138,8 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "", "pathname": "path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
@@ -10158,13 +10158,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "", "pathname": "/path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -10178,12 +10178,12 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "", "pathname": "/path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -10198,13 +10198,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -10218,8 +10218,8 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
@@ -10238,13 +10238,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "hash": "hash"}] | |
protocol 'https' | |
@@ -10258,12 +10258,12 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "search": "search"}] | |
@@ -10278,13 +10278,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -10298,11 +10298,11 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -10318,13 +10318,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "pathname": "path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -10338,12 +10338,12 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "pathname": "path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -10358,13 +10358,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -10378,8 +10378,8 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
@@ -10398,13 +10398,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "pathname": "/path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -10418,12 +10418,12 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "pathname": "/path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -10438,13 +10438,13 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -10458,8 +10458,8 @@ | |
[{"protocol": "https", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
@@ -10480,11 +10480,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hash": "hash"}] | |
protocol 'https' | |
@@ -10500,10 +10500,10 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "search": "search"}] | |
@@ -10520,11 +10520,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -10540,9 +10540,9 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -10560,11 +10560,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -10580,10 +10580,10 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "pathname": "path", "search": "search"}] | |
@@ -10600,11 +10600,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -10620,8 +10620,8 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
hash 'hash' | |
@@ -10640,11 +10640,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -10660,10 +10660,10 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "pathname": "/path", "search": "search"}] | |
@@ -10680,11 +10680,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -10700,8 +10700,8 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
hash 'hash' | |
@@ -10720,11 +10720,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "port": "", "hash": "hash"}] | |
protocol 'https' | |
@@ -10740,10 +10740,10 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "port": "", "search": "search"}] | |
@@ -10760,11 +10760,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "port": "", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -10780,9 +10780,9 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -10800,11 +10800,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -10820,10 +10820,10 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "port": "", "pathname": "path", "search": "search"}] | |
@@ -10840,11 +10840,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -10860,7 +10860,7 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
@@ -10880,11 +10880,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -10900,10 +10900,10 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -10920,11 +10920,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -10940,7 +10940,7 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
search 'search' | |
@@ -10960,11 +10960,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "port": "8443", "hash": "hash"}] | |
protocol 'https' | |
@@ -10980,10 +10980,10 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "port": "8443", "search": "search"}] | |
@@ -11000,11 +11000,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -11020,9 +11020,9 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -11040,11 +11040,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -11060,10 +11060,10 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -11080,11 +11080,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -11100,7 +11100,7 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
@@ -11120,11 +11120,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -11140,10 +11140,10 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -11160,11 +11160,11 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -11180,7 +11180,7 @@ | |
protocol 'https' | |
username '*' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
@@ -11201,10 +11201,10 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "hash": "hash"}] | |
protocol 'https' | |
@@ -11221,9 +11221,9 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "search": "search"}] | |
@@ -11241,10 +11241,10 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -11261,8 +11261,8 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -11281,10 +11281,10 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -11301,9 +11301,9 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "pathname": "path", "search": "search"}] | |
@@ -11321,10 +11321,10 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -11341,7 +11341,7 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
hash 'hash' | |
@@ -11361,10 +11361,10 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -11381,9 +11381,9 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "pathname": "/path", "search": "search"}] | |
@@ -11401,10 +11401,10 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -11421,7 +11421,7 @@ | |
username '*' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
hash 'hash' | |
@@ -11442,9 +11442,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "", "hash": "hash"}] | |
protocol 'https' | |
@@ -11462,8 +11462,8 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "", "search": "search"}] | |
@@ -11482,9 +11482,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -11502,7 +11502,7 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -11523,8 +11523,8 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -11543,7 +11543,7 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "", "pathname": "path", "search": "search"}] | |
@@ -11564,7 +11564,7 @@ | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -11603,8 +11603,8 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -11623,7 +11623,7 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -11644,7 +11644,7 @@ | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -11682,9 +11682,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "8443", "hash": "hash"}] | |
protocol 'https' | |
@@ -11702,8 +11702,8 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "8443", "search": "search"}] | |
@@ -11722,9 +11722,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -11742,7 +11742,7 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -11763,8 +11763,8 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -11783,7 +11783,7 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -11804,7 +11804,7 @@ | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -11843,8 +11843,8 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -11863,7 +11863,7 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -11884,7 +11884,7 @@ | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -11920,11 +11920,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hash": "hash"}] | |
protocol 'https' | |
@@ -11940,10 +11940,10 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "search": "search"}] | |
@@ -11960,11 +11960,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -11980,9 +11980,9 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -12000,11 +12000,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -12020,10 +12020,10 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "pathname": "path", "search": "search"}] | |
@@ -12040,11 +12040,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -12060,8 +12060,8 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
hash 'hash' | |
@@ -12080,11 +12080,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -12100,10 +12100,10 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "pathname": "/path", "search": "search"}] | |
@@ -12120,11 +12120,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -12140,8 +12140,8 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
hash 'hash' | |
@@ -12160,11 +12160,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "port": "", "hash": "hash"}] | |
protocol 'https' | |
@@ -12180,10 +12180,10 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "port": "", "search": "search"}] | |
@@ -12200,11 +12200,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "port": "", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -12220,9 +12220,9 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -12240,11 +12240,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -12260,10 +12260,10 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "port": "", "pathname": "path", "search": "search"}] | |
@@ -12280,11 +12280,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -12300,7 +12300,7 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
@@ -12320,11 +12320,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -12340,10 +12340,10 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -12360,11 +12360,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -12380,7 +12380,7 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
search 'search' | |
@@ -12400,11 +12400,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "port": "8443", "hash": "hash"}] | |
protocol 'https' | |
@@ -12420,10 +12420,10 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "port": "8443", "search": "search"}] | |
@@ -12440,11 +12440,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -12460,9 +12460,9 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -12480,11 +12480,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -12500,10 +12500,10 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -12520,11 +12520,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -12540,7 +12540,7 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
@@ -12560,11 +12560,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -12580,10 +12580,10 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -12600,11 +12600,11 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -12620,7 +12620,7 @@ | |
protocol 'https' | |
username 'user' | |
password '*' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
@@ -12641,10 +12641,10 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "hash": "hash"}] | |
protocol 'https' | |
@@ -12661,9 +12661,9 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "search": "search"}] | |
@@ -12681,10 +12681,10 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -12701,8 +12701,8 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -12721,10 +12721,10 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -12741,9 +12741,9 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "pathname": "path", "search": "search"}] | |
@@ -12761,10 +12761,10 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -12781,7 +12781,7 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
hash 'hash' | |
@@ -12801,10 +12801,10 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -12821,9 +12821,9 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "pathname": "/path", "search": "search"}] | |
@@ -12841,10 +12841,10 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -12861,7 +12861,7 @@ | |
username 'user' | |
password '*' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
hash 'hash' | |
@@ -12882,9 +12882,9 @@ | |
password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "", "hash": "hash"}] | |
protocol 'https' | |
@@ -12902,8 +12902,8 @@ | |
password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "", "search": "search"}] | |
@@ -12922,9 +12922,9 @@ | |
password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -12942,7 +12942,7 @@ | |
password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -12963,8 +12963,8 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -12983,7 +12983,7 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "", "pathname": "path", "search": "search"}] | |
@@ -13004,7 +13004,7 @@ | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -13043,8 +13043,8 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -13063,7 +13063,7 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -13084,7 +13084,7 @@ | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -13122,9 +13122,9 @@ | |
password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "8443", "hash": "hash"}] | |
protocol 'https' | |
@@ -13142,8 +13142,8 @@ | |
password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "8443", "search": "search"}] | |
@@ -13162,9 +13162,9 @@ | |
password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -13182,7 +13182,7 @@ | |
password '*' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -13203,8 +13203,8 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -13223,7 +13223,7 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -13244,7 +13244,7 @@ | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -13283,8 +13283,8 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -13303,7 +13303,7 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -13324,7 +13324,7 @@ | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -13360,11 +13360,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hash": "hash"}] | |
protocol 'https' | |
@@ -13380,10 +13380,10 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "search": "search"}] | |
@@ -13400,11 +13400,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -13420,9 +13420,9 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ hostname '*' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -13440,11 +13440,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -13460,10 +13460,10 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "pathname": "path", "search": "search"}] | |
@@ -13480,11 +13480,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -13500,8 +13500,8 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
hash 'hash' | |
@@ -13520,11 +13520,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -13540,10 +13540,10 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "pathname": "/path", "search": "search"}] | |
@@ -13560,11 +13560,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -13580,8 +13580,8 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
- port '8000' | |
+ hostname '*' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
hash 'hash' | |
@@ -13600,11 +13600,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "", "hash": "hash"}] | |
protocol 'https' | |
@@ -13620,10 +13620,10 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "", "search": "search"}] | |
@@ -13640,11 +13640,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -13660,9 +13660,9 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -13680,11 +13680,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -13700,10 +13700,10 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "", "pathname": "path", "search": "search"}] | |
@@ -13720,11 +13720,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -13740,7 +13740,7 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
@@ -13760,11 +13760,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -13780,10 +13780,10 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -13800,11 +13800,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -13820,7 +13820,7 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '' | |
pathname '/path' | |
search 'search' | |
@@ -13840,11 +13840,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "8443", "hash": "hash"}] | |
protocol 'https' | |
@@ -13860,10 +13860,10 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "8443", "search": "search"}] | |
@@ -13880,11 +13880,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -13900,9 +13900,9 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -13920,11 +13920,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -13940,10 +13940,10 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -13960,11 +13960,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -13980,7 +13980,7 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
@@ -14000,11 +14000,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -14020,10 +14020,10 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -14040,11 +14040,11 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -14060,7 +14060,7 @@ | |
protocol 'https' | |
username 'user' | |
password 'password' | |
- hostname 'whatwg.org' | |
+ hostname '*' | |
port '8443' | |
pathname '/path' | |
search 'search' | |
@@ -14081,10 +14081,10 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "hash": "hash"}] | |
protocol 'https' | |
@@ -14101,9 +14101,9 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ port '*' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "search": "search"}] | |
@@ -14121,10 +14121,10 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -14141,8 +14141,8 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
- pathname '/resources/index.html' | |
+ port '*' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -14161,10 +14161,10 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -14181,9 +14181,9 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "pathname": "path", "search": "search"}] | |
@@ -14201,10 +14201,10 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -14221,7 +14221,7 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/resources/path' | |
search 'search' | |
hash 'hash' | |
@@ -14241,10 +14241,10 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -14261,9 +14261,9 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "pathname": "/path", "search": "search"}] | |
@@ -14281,10 +14281,10 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -14301,7 +14301,7 @@ | |
username 'user' | |
password 'password' | |
hostname 'example.com' | |
- port '8000' | |
+ port '*' | |
pathname '/path' | |
search 'search' | |
hash 'hash' | |
@@ -14322,9 +14322,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "", "hash": "hash"}] | |
protocol 'https' | |
@@ -14342,8 +14342,8 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "", "search": "search"}] | |
@@ -14362,9 +14362,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -14382,7 +14382,7 @@ | |
password 'password' | |
hostname 'example.com' | |
port '' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -14403,8 +14403,8 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -14423,7 +14423,7 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "", "pathname": "path", "search": "search"}] | |
@@ -14444,7 +14444,7 @@ | |
port '' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -14483,8 +14483,8 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -14503,7 +14503,7 @@ | |
hostname 'example.com' | |
port '' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search"}] | |
@@ -14524,7 +14524,7 @@ | |
port '' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -14562,9 +14562,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
- hash 'intro' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "8443", "hash": "hash"}] | |
protocol 'https' | |
@@ -14582,8 +14582,8 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
- search 'page=2' | |
+ pathname '*' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "8443", "search": "search"}] | |
@@ -14602,9 +14602,9 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "8443", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -14622,7 +14622,7 @@ | |
password 'password' | |
hostname 'example.com' | |
port '8443' | |
- pathname '/resources/index.html' | |
+ pathname '*' | |
search 'search' | |
hash 'hash' | |
@@ -14643,8 +14643,8 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "path", "hash": "hash"}] | |
protocol 'https' | |
@@ -14663,7 +14663,7 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/resources/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search"}] | |
@@ -14684,7 +14684,7 @@ | |
port '8443' | |
pathname '/resources/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -14723,8 +14723,8 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
- hash 'intro' | |
+ search '*' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "/path", "hash": "hash"}] | |
protocol 'https' | |
@@ -14743,7 +14743,7 @@ | |
hostname 'example.com' | |
port '8443' | |
pathname '/path' | |
- search 'page=2' | |
+ search '*' | |
hash 'hash' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search"}] | |
@@ -14764,7 +14764,7 @@ | |
port '8443' | |
pathname '/path' | |
search 'search' | |
- hash 'intro' | |
+ hash '*' | |
[{"protocol": "https", "username": "user", "password": "password", "hostname": "example.com", "port": "8443", "pathname": "/path", "search": "search", "hash": "hash"}] | |
protocol 'https' | |
@@ -14888,193 +14888,193 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?otherquery#otherhash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'otherquery' | |
- hash 'otherhash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search 'query' | |
- hash 'hash' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/foo/:bar"}] | |
protocol '*' | |
@@ -16432,53 +16432,53 @@ | |
[{"pathname": "./foo/bar", "baseURL": "https://example.com"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "", "baseURL": "https://example.com"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "{/bar}", "baseURL": "https://example.com/foo/"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/bar' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "\\/bar", "baseURL": "https://example.com/foo/"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/bar' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "b", "baseURL": "https://example.com/foo/"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/b' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "foo/bar"}] | |
protocol '*' | |
@@ -16492,23 +16492,23 @@ | |
[{"pathname": "foo/bar", "baseURL": "https://example.com"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": ":name.html", "baseURL": "https://example.com"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/:name.html' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
[{"search": "q=caf%C3%A9"}] | |
protocol '*' | |
@@ -16715,8 +16715,8 @@ | |
["https://example.com:8080/foo?bar#baz"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8080' | |
pathname '/foo' | |
@@ -16725,8 +16725,8 @@ | |
["/foo?bar#baz", "https://example.com:8080"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8080' | |
pathname '/foo' | |
@@ -16741,28 +16741,28 @@ | |
["http{s}?://{*.}?example.com/:product/:endpoint"] | |
protocol 'http{s}?' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '{*.}?example.com' | |
port '' | |
pathname '/:product/:endpoint' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://example.com?foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
search 'foo' | |
- hash '' | |
+ hash '*' | |
["https://example.com#foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
@@ -16771,18 +16771,18 @@ | |
["https://example.com:8080?foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8080' | |
pathname '/' | |
search 'foo' | |
- hash '' | |
+ hash '*' | |
["https://example.com:8080#foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8080' | |
pathname '/' | |
@@ -16791,18 +16791,18 @@ | |
["https://example.com/?foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
search 'foo' | |
- hash '' | |
+ hash '*' | |
["https://example.com/#foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
@@ -16811,116 +16811,116 @@ | |
["https://example.com/*?foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/*?foo' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://example.com/*\\?foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/*' | |
search 'foo' | |
- hash '' | |
+ hash '*' | |
["https://example.com/:name?foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/:name?foo' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://example.com/:name\\?foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/:name' | |
search 'foo' | |
- hash '' | |
+ hash '*' | |
["https://example.com/(bar)?foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/(bar)?foo' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://example.com/(bar)\\?foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/(bar)' | |
search 'foo' | |
- hash '' | |
+ hash '*' | |
["https://example.com/{bar}?foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/{bar}?foo' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://example.com/{bar}\\?foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/bar' | |
search 'foo' | |
- hash '' | |
+ hash '*' | |
["https://example.com/"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["data:foobar"] | |
<error> | |
["data\\:foobar"] | |
protocol 'data' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'foobar' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://{sub.}?example.com/foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '{sub.}?example.com' | |
port '' | |
pathname '/foo' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://{sub.}?example{.com/}foo"] | |
<error> | |
@@ -16930,23 +16930,23 @@ | |
["https://(sub.)?example.com/foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '(sub.)?example.com' | |
port '' | |
pathname '/foo' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://(sub.)?example(.com/)foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '(sub.)?example(.com/)foo' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["(https://)example.com/foo"] | |
<error> | |
@@ -16956,51 +16956,51 @@ | |
["https://(sub(?:.))?example.com/foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '(sub(?:.))?example.com' | |
port '' | |
pathname '/foo' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["file:///foo/bar"] | |
protocol 'file' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '/foo/bar' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["data:"] | |
protocol 'data' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname '' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["foo://bar"] | |
protocol 'foo' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'bar' | |
port '' | |
- pathname '' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["(caf\u00e9)://foo"] | |
<error> | |
["https://example.com/foo?bar#baz"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo' | |
@@ -17019,8 +17019,8 @@ | |
["?bar#baz", "https://example.com/foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo' | |
@@ -17029,18 +17029,18 @@ | |
["?bar", "https://example.com/foo#baz"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo' | |
search 'bar' | |
- hash '' | |
+ hash '*' | |
["#baz", "https://example.com/foo?bar"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo' | |
@@ -17049,8 +17049,8 @@ | |
["#baz", "https://example.com/foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo' | |
@@ -17083,19 +17083,19 @@ | |
password 'bar' | |
hostname 'example.com' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://foo@example.com"] | |
protocol 'https' | |
username 'foo' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://\\:bar@example.com"] | |
protocol 'https' | |
@@ -17103,9 +17103,9 @@ | |
password 'bar' | |
hostname 'example.com' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https://:user::pass@example.com"] | |
protocol 'https' | |
@@ -17113,9 +17113,9 @@ | |
password ':pass' | |
hostname 'example.com' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["https\\:foo\\:bar@example.com"] | |
protocol 'https' | |
@@ -17123,89 +17123,89 @@ | |
password 'bar' | |
hostname 'example.com' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["data\\:foo\\:bar@example.com"] | |
protocol 'data' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'foo\\:bar@example.com' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["https://foo{\\:}bar@example.com"] | |
protocol 'https' | |
username 'foo%3Abar' | |
- password '' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
- pathname '/' | |
- search '' | |
- hash '' | |
+ pathname '*' | |
+ search '*' | |
+ hash '*' | |
["data{\\:}channel.html", "https://example.com"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/data\\:channel.html' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["http://[\\:\\:1]/"] | |
protocol 'http' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '[\\:\\:1]' | |
port '' | |
pathname '/' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["http://[\\:\\:1]:8080/"] | |
protocol 'http' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '[\\:\\:1]' | |
port '8080' | |
pathname '/' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["http://[\\:\\:a]/"] | |
protocol 'http' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '[\\:\\:a]' | |
port '' | |
pathname '/' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["http://[:address]/"] | |
protocol 'http' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '[:address]' | |
port '' | |
pathname '/' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
["http://[\\:\\:AB\\::num]/"] | |
protocol 'http' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '[\\:\\:ab\\::num]' | |
port '' | |
pathname '/' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
[{"hostname": "[\\:\\:AB\\::num]"}] | |
protocol '*' | |
@@ -17267,13 +17267,13 @@ | |
["data\\:text/javascript,let x = 100/:tens?5;"] | |
protocol 'data' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname '' | |
port '' | |
pathname 'text/javascript,let x = 100/:tens?5;' | |
- search '' | |
- hash '' | |
+ search '*' | |
+ hash '*' | |
[{"pathname": "/:id/:id"}] | |
<error> | |
@@ -17780,8 +17780,8 @@ | |
["https://example.com:8080/foo?bar#baz", {"ignoreCase": true}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8080' | |
pathname '/foo' | |
@@ -17790,8 +17790,8 @@ | |
["/foo?bar#baz", "https://example.com:8080", {"ignoreCase": true}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8080' | |
pathname '/foo' | |
@@ -17803,18 +17803,18 @@ | |
[{"search": "foo", "baseURL": "https://example.com/a/+/b"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/a/\\+/b' | |
search 'foo' | |
- hash '' | |
+ hash '*' | |
[{"hash": "foo", "baseURL": "https://example.com/?q=*&v=?&hmm={}&umm=()"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
@@ -17823,8 +17823,8 @@ | |
["#foo", "https://example.com/?q=*&v=?&hmm={}&umm=()"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
["https:example.com", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com' | |
@@ -336,8 +336,8 @@ | |
["https:example.com#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com' | |
@@ -349,8 +349,8 @@ | |
["https:example.com?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com' | |
@@ -362,8 +362,8 @@ | |
["https:example.com?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com' | |
@@ -375,8 +375,8 @@ | |
["https:example.com/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com/path' | |
@@ -388,8 +388,8 @@ | |
["https:example.com/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com/path' | |
@@ -401,8 +401,8 @@ | |
["https:example.com/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com/path' | |
@@ -414,8 +414,8 @@ | |
["https:example.com/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:example.com/path' | |
@@ -475,8 +475,8 @@ | |
["https:user@", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@' | |
@@ -488,8 +488,8 @@ | |
["https:user@#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@' | |
@@ -501,8 +501,8 @@ | |
["https:user@?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@' | |
@@ -514,8 +514,8 @@ | |
["https:user@?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@' | |
@@ -527,8 +527,8 @@ | |
["https:user@/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@/path' | |
@@ -540,8 +540,8 @@ | |
["https:user@/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@/path' | |
@@ -553,8 +553,8 @@ | |
["https:user@/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@/path' | |
@@ -566,8 +566,8 @@ | |
["https:user@/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@/path' | |
@@ -627,8 +627,8 @@ | |
["https:user@example.com", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com' | |
@@ -640,8 +640,8 @@ | |
["https:user@example.com#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com' | |
@@ -653,8 +653,8 @@ | |
["https:user@example.com?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com' | |
@@ -666,8 +666,8 @@ | |
["https:user@example.com?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com' | |
@@ -679,8 +679,8 @@ | |
["https:user@example.com/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com/path' | |
@@ -692,8 +692,8 @@ | |
["https:user@example.com/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com/path' | |
@@ -705,8 +705,8 @@ | |
["https:user@example.com/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com/path' | |
@@ -718,8 +718,8 @@ | |
["https:user@example.com/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/https:user@example.com/path' | |
@@ -3115,8 +3115,8 @@ | |
["", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/' | |
@@ -3128,8 +3128,8 @@ | |
["#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/index.html' | |
@@ -3141,8 +3141,8 @@ | |
["?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/index.html' | |
@@ -3154,8 +3154,8 @@ | |
["?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/index.html' | |
@@ -3167,8 +3167,8 @@ | |
["path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
@@ -3180,8 +3180,8 @@ | |
["path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
@@ -3193,8 +3193,8 @@ | |
["path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
@@ -3206,8 +3206,8 @@ | |
["path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
@@ -3219,8 +3219,8 @@ | |
["/path", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
@@ -3232,8 +3232,8 @@ | |
["/path#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
@@ -3245,8 +3245,8 @@ | |
["/path?search", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
@@ -3258,8 +3258,8 @@ | |
["/path?search#hash", "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
@@ -3278,8 +3278,8 @@ | |
[{"baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/index.html' | |
@@ -3298,8 +3298,8 @@ | |
[{"hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/index.html' | |
@@ -3318,8 +3318,8 @@ | |
[{"search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/index.html' | |
@@ -3338,8 +3338,8 @@ | |
[{"search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/index.html' | |
@@ -3358,8 +3358,8 @@ | |
[{"pathname": "path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
@@ -3378,8 +3378,8 @@ | |
[{"pathname": "path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
@@ -3398,8 +3398,8 @@ | |
[{"pathname": "path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
@@ -3418,8 +3418,8 @@ | |
[{"pathname": "path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/resources/path' | |
@@ -3438,8 +3438,8 @@ | |
[{"pathname": "/path", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
@@ -3458,8 +3458,8 @@ | |
[{"pathname": "/path", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
@@ -3478,8 +3478,8 @@ | |
[{"pathname": "/path", "search": "search", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
@@ -3498,8 +3498,8 @@ | |
[{"pathname": "/path", "search": "search", "hash": "hash", "baseURL": "https://root:hunter2@whatwg.org:8000/resources/index.html?page=2#intro"}] | |
protocol 'https' | |
- username 'root' | |
- password 'hunter2' | |
+ username '*' | |
+ password '*' | |
hostname 'whatwg.org' | |
port '8000' | |
pathname '/path' | |
@@ -14888,8 +14888,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -14898,8 +14898,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -14908,8 +14908,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -14918,8 +14918,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -14928,8 +14928,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -14938,8 +14938,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -14948,8 +14948,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -14958,8 +14958,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?otherquery#otherhash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -14968,8 +14968,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -14978,8 +14978,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -14988,8 +14988,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -14998,8 +14998,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -15008,8 +15008,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -15018,8 +15018,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -15028,8 +15028,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -15038,8 +15038,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -15048,8 +15048,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -15058,8 +15058,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -15068,8 +15068,8 @@ | |
[{"pathname": "/foo/bar", "baseURL": "https://example.com?query#hash"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -16432,8 +16432,8 @@ | |
[{"pathname": "./foo/bar", "baseURL": "https://example.com"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -16442,8 +16442,8 @@ | |
[{"pathname": "", "baseURL": "https://example.com"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
@@ -16452,8 +16452,8 @@ | |
[{"pathname": "{/bar}", "baseURL": "https://example.com/foo/"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/bar' | |
@@ -16462,8 +16462,8 @@ | |
[{"pathname": "\\/bar", "baseURL": "https://example.com/foo/"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/bar' | |
@@ -16472,8 +16472,8 @@ | |
[{"pathname": "b", "baseURL": "https://example.com/foo/"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/b' | |
@@ -16492,8 +16492,8 @@ | |
[{"pathname": "foo/bar", "baseURL": "https://example.com"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo/bar' | |
@@ -16502,8 +16502,8 @@ | |
[{"pathname": ":name.html", "baseURL": "https://example.com"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/:name.html' | |
@@ -16725,8 +16725,8 @@ | |
["/foo?bar#baz", "https://example.com:8080"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8080' | |
pathname '/foo' | |
@@ -17019,8 +17019,8 @@ | |
["?bar#baz", "https://example.com/foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo' | |
@@ -17029,8 +17029,8 @@ | |
["?bar", "https://example.com/foo#baz"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo' | |
@@ -17039,8 +17039,8 @@ | |
["#baz", "https://example.com/foo?bar"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo' | |
@@ -17049,8 +17049,8 @@ | |
["#baz", "https://example.com/foo"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/foo' | |
@@ -17149,8 +17149,8 @@ | |
["data{\\:}channel.html", "https://example.com"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/data\\:channel.html' | |
@@ -17790,8 +17790,8 @@ | |
["/foo?bar#baz", "https://example.com:8080", {"ignoreCase": true}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '8080' | |
pathname '/foo' | |
@@ -17803,8 +17803,8 @@ | |
[{"search": "foo", "baseURL": "https://example.com/a/+/b"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/a/\\+/b' | |
@@ -17813,8 +17813,8 @@ | |
[{"hash": "foo", "baseURL": "https://example.com/?q=*&v=?&hmm={}&umm=()"}] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' | |
@@ -17823,8 +17823,8 @@ | |
["#foo", "https://example.com/?q=*&v=?&hmm={}&umm=()"] | |
protocol 'https' | |
- username '' | |
- password '' | |
+ username '*' | |
+ password '*' | |
hostname 'example.com' | |
port '' | |
pathname '/' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment