mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Auto merge of #28994 - servo:dependabot/cargo/url-2.3.1, r=jdm
Bump url from 2.2.2 to 2.3.1 Bumps [url](https://github.com/servo/rust-url) from 2.2.2 to 2.3.1. <details> <summary>Commits</summary> <ul> <li><a href="359bc90a4f
"><code>359bc90</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/servo/rust-url/issues/792">#792</a> from servo/version_bump_2.3.1</li> <li><a href="ad8911ae54
"><code>ad8911a</code></a> Bump url version to 2.3.1 and bump minor for dependencies</li> <li><a href="35abc325ba
"><code>35abc32</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/servo/rust-url/issues/791">#791</a> from servo/ver_2.3.0</li> <li><a href="25266fcc36
"><code>25266fc</code></a> Bump url version to 2.3.0</li> <li><a href="587e9628a9
"><code>587e962</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/servo/rust-url/issues/790">#790</a> from crowlKats/remove_idna</li> <li><a href="eaa23e556f
"><code>eaa23e5</code></a> remove IDNA feature</li> <li><a href="a3df36528a
"><code>a3df365</code></a> feat(url): add <code>quirks::internal_components</code> (<a href="https://github-redirect.dependabot.com/servo/rust-url/issues/788">#788</a>)</li> <li><a href="868719da3f
"><code>868719d</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/servo/rust-url/issues/734">#734</a> from andrewbanchich/fix-set-host</li> <li><a href="eb3f20d7e4
"><code>eb3f20d</code></a> Fix setting file hosts to None</li> <li><a href="6e5df8fe3b
"><code>6e5df8f</code></a> perf(idna): fast-path simple/ascii domains (<a href="https://github-redirect.dependabot.com/servo/rust-url/issues/761">#761</a>)</li> <li>Additional commits viewable in <a href="https://github.com/servo/rust-url/compare/v2.2.2...v2.3.1">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
This commit is contained in:
commit
53570ffe55
7 changed files with 6 additions and 2526 deletions
15
Cargo.lock
generated
15
Cargo.lock
generated
|
@ -1819,11 +1819,10 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|||
|
||||
[[package]]
|
||||
name = "form_urlencoded"
|
||||
version = "1.0.1"
|
||||
version = "1.1.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
|
||||
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
|
||||
dependencies = [
|
||||
"matches",
|
||||
"percent-encoding",
|
||||
]
|
||||
|
||||
|
@ -2944,11 +2943,10 @@ checksum = "3c9826188e666f2ed92071d2dadef6edc430b11b158b5b2b3f4babbcc891eaaa"
|
|||
|
||||
[[package]]
|
||||
name = "idna"
|
||||
version = "0.2.3"
|
||||
version = "0.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
|
||||
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
|
||||
dependencies = [
|
||||
"matches",
|
||||
"unicode-bidi",
|
||||
"unicode-normalization",
|
||||
]
|
||||
|
@ -6986,13 +6984,12 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "url"
|
||||
version = "2.2.2"
|
||||
version = "2.3.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
|
||||
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
|
||||
dependencies = [
|
||||
"form_urlencoded",
|
||||
"idna",
|
||||
"matches",
|
||||
"percent-encoding",
|
||||
"serde",
|
||||
]
|
||||
|
|
|
@ -17,6 +17,3 @@
|
|||
|
||||
[test some point of the element: bottom right corner]
|
||||
expected: FAIL
|
||||
|
||||
[test the top of layer]
|
||||
expected: FAIL
|
||||
|
|
|
@ -144,27 +144,6 @@
|
|||
[Parsing: <foo://ho|st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%7Cst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://%43%7C> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://%43|> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://C%7C> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://%43%7C/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <https://%43%7C/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <asdf://%43|/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <C|/> against <file://host/>]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -176,264 +155,3 @@
|
|||
|
||||
[Parsing: <file:/C:/> against <file://host/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.4.5> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.4.5.> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0..0x300/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0..0x300./> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://256.256.256.256.256> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://256.256.256.256.256.> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.08> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.08.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.09> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://09.2.3.4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://09.2.3.4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://01.2.3.4.5> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://01.2.3.4.5.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0x1.2.3.4.5> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0x1.2.3.4.5.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.1.2.3.4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.1.2.3.4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.2.3.4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.2.3.4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.09> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.09.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0x4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0x4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0999999999999999999/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0x> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0XFfFfFfFfFfFfFfFfFfAcE123> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://💩.123/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <sc://a|b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x01b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x02b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x03b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x04b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x05b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x06b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x07b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x08b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0bb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0cb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0eb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0fb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x10b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x11b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x12b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x13b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x14b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x15b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x16b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x17b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x18b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x19b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1ab/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1bb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1cb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1db/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1eb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1fb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a|b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ab/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%01st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%02st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%03st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%04st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%05st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%06st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%07st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%08st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Bst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Cst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Est/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Fst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%10st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%11st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%12st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%13st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%14st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%15st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%16st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%17st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%18st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%19st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Ast/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Bst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Cst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Dst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Est/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Fst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%7Fst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
|
|
@ -144,27 +144,6 @@
|
|||
[Parsing: <foo://ho|st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%7Cst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://%43%7C> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://%43|> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://C%7C> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://%43%7C/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <https://%43%7C/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <asdf://%43|/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <C|/> against <file://host/>]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -176,264 +155,3 @@
|
|||
|
||||
[Parsing: <file:/C:/> against <file://host/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.4.5> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.4.5.> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0..0x300/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0..0x300./> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://256.256.256.256.256> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://256.256.256.256.256.> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.08> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.08.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.09> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://09.2.3.4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://09.2.3.4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://01.2.3.4.5> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://01.2.3.4.5.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0x1.2.3.4.5> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0x1.2.3.4.5.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.1.2.3.4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.1.2.3.4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.2.3.4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.2.3.4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.09> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.09.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0x4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0x4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0999999999999999999/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0x> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0XFfFfFfFfFfFfFfFfFfAcE123> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://💩.123/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <sc://a|b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x01b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x02b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x03b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x04b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x05b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x06b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x07b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x08b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0bb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0cb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0eb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0fb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x10b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x11b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x12b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x13b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x14b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x15b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x16b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x17b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x18b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x19b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1ab/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1bb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1cb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1db/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1eb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1fb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a|b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ab/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%01st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%02st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%03st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%04st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%05st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%06st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%07st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%08st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Bst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Cst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Est/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Fst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%10st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%11st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%12st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%13st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%14st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%15st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%16st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%17st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%18st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%19st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Ast/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Bst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Cst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Dst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Est/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Fst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%7Fst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -134,27 +134,6 @@
|
|||
[Parsing: <foo://ho|st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%7Cst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://%43%7C> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://%43|> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://C%7C> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://%43%7C/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <https://%43%7C/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <asdf://%43|/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <C|/> against <file://host/>]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -167,267 +146,6 @@
|
|||
[Parsing: <file:/C:/> against <file://host/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.4.5> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.4.5.> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0..0x300/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0..0x300./> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://256.256.256.256.256> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://256.256.256.256.256.> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.08> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.08.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.09> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://09.2.3.4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://09.2.3.4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://01.2.3.4.5> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://01.2.3.4.5.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0x1.2.3.4.5> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0x1.2.3.4.5.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.1.2.3.4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.1.2.3.4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.2.3.4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.2.3.4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.09> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.09.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0x4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0x4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0999999999999999999/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0x> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0XFfFfFfFfFfFfFfFfFfAcE123> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://💩.123/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <sc://a|b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x01b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x02b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x03b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x04b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x05b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x06b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x07b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x08b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0bb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0cb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0eb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0fb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x10b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x11b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x12b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x13b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x14b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x15b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x16b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x17b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x18b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x19b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1ab/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1bb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1cb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1db/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1eb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1fb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a|b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ab/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%01st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%02st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%03st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%04st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%05st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%06st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%07st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%08st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Bst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Cst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Est/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Fst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%10st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%11st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%12st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%13st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%14st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%15st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%16st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%17st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%18st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%19st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Ast/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Bst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Cst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Dst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Est/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Fst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%7Fst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
|
||||
[url-constructor.any.worker.html]
|
||||
[Parsing: <file://[1::8\]/C:/> against <about:blank>]
|
||||
|
@ -565,27 +283,6 @@
|
|||
[Parsing: <foo://ho|st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%7Cst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://%43%7C> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://%43|> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://C%7C> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <file://%43%7C/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <https://%43%7C/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <asdf://%43|/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <C|/> against <file://host/>]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -597,264 +294,3 @@
|
|||
|
||||
[Parsing: <file:/C:/> against <file://host/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.4.5> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.4.5.> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0..0x300/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0..0x300./> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://256.256.256.256.256> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://256.256.256.256.256.> against <http://other.com/>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.08> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.08.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://1.2.3.09> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://09.2.3.4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://09.2.3.4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://01.2.3.4.5> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://01.2.3.4.5.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0x1.2.3.4.5> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0x1.2.3.4.5.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.1.2.3.4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.1.2.3.4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.2.3.4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.2.3.4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.09> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.09.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0x4> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0x4.> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://0999999999999999999/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0x> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://foo.0XFfFfFfFfFfFfFfFfFfAcE123> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://💩.123/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <sc://a|b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x01b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x02b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x03b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x04b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x05b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x06b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x07b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x08b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0bb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0cb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0eb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x0fb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x10b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x11b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x12b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x13b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x14b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x15b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x16b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x17b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x18b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x19b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1ab/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1bb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1cb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1db/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1eb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a\x1fb/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://a|b/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ab/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%01st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%02st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%03st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%04st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%05st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%06st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%07st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%08st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Bst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Cst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Est/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%0Fst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%10st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%11st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%12st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%13st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%14st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%15st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%16st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%17st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%18st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%19st/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Ast/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Bst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Cst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Dst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Est/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%1Fst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
||||
[Parsing: <http://ho%7Fst/> against <about:blank>]
|
||||
expected: FAIL
|
||||
|
|
|
@ -47,24 +47,6 @@
|
|||
[Setting port with leading U+001F (wpt++:)]
|
||||
expected: FAIL
|
||||
|
||||
[Setting host with leading U+001F (https:)]
|
||||
expected: FAIL
|
||||
|
||||
[Setting hostname with leading U+001F (https:)]
|
||||
expected: FAIL
|
||||
|
||||
[Setting host with middle U+001F (https:)]
|
||||
expected: FAIL
|
||||
|
||||
[Setting hostname with middle U+001F (https:)]
|
||||
expected: FAIL
|
||||
|
||||
[Setting host with trailing U+001F (https:)]
|
||||
expected: FAIL
|
||||
|
||||
[Setting hostname with trailing U+001F (https:)]
|
||||
expected: FAIL
|
||||
|
||||
|
||||
[url-setters-stripping.any.worker.html]
|
||||
[Setting protocol with U+0000 before inserted colon (https:)]
|
||||
|
@ -114,21 +96,3 @@
|
|||
|
||||
[Setting port with leading U+001F (wpt++:)]
|
||||
expected: FAIL
|
||||
|
||||
[Setting host with leading U+001F (https:)]
|
||||
expected: FAIL
|
||||
|
||||
[Setting hostname with leading U+001F (https:)]
|
||||
expected: FAIL
|
||||
|
||||
[Setting host with middle U+001F (https:)]
|
||||
expected: FAIL
|
||||
|
||||
[Setting hostname with middle U+001F (https:)]
|
||||
expected: FAIL
|
||||
|
||||
[Setting host with trailing U+001F (https:)]
|
||||
expected: FAIL
|
||||
|
||||
[Setting hostname with trailing U+001F (https:)]
|
||||
expected: FAIL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue