mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
Bug 1589510 [wpt PR 19770] - Make gopher behave like unrecognized schemes, a=testonly
Automatic update from web-platform-tests URL: make gopher behave like unrecognized schemes See https://github.com/whatwg/url/issues/342 for context. -- wpt-commits: 8a9d0ccbeabbec3df4c38a394651d1b53dd2f8c5 wpt-pr: 19770
This commit is contained in:
parent
48dacab490
commit
3a5d96ed8b
@ -17,7 +17,6 @@ self.onload = () => {
|
||||
'data',
|
||||
'file',
|
||||
'ftp',
|
||||
'gopher',
|
||||
'http+x'
|
||||
].forEach((val, index) => {
|
||||
async_test((t) => {
|
||||
|
@ -12,7 +12,6 @@ self.onload = () => {
|
||||
// 'mailto' opens an email client in Firefox...
|
||||
'file',
|
||||
'ftp',
|
||||
'gopher',
|
||||
'http+x'
|
||||
].forEach((val) => {
|
||||
async_test((t) => {
|
||||
|
@ -1,6 +1,7 @@
|
||||
<!doctype html>
|
||||
<meta charset=utf-8>
|
||||
<title>Test URL parser failure consistency</title>
|
||||
<meta name=timeout content=long>
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<div id=log></div>
|
||||
|
@ -1076,15 +1076,15 @@
|
||||
{
|
||||
"input": "gopher:/example.com/",
|
||||
"base": "http://example.org/foo/bar",
|
||||
"href": "gopher://example.com/",
|
||||
"origin": "gopher://example.com",
|
||||
"href": "gopher:/example.com/",
|
||||
"origin": "null",
|
||||
"protocol": "gopher:",
|
||||
"username": "",
|
||||
"password": "",
|
||||
"host": "example.com",
|
||||
"hostname": "example.com",
|
||||
"host": "",
|
||||
"hostname": "",
|
||||
"port": "",
|
||||
"pathname": "/",
|
||||
"pathname": "/example.com/",
|
||||
"search": "",
|
||||
"hash": ""
|
||||
},
|
||||
@ -1241,15 +1241,15 @@
|
||||
{
|
||||
"input": "gopher:example.com/",
|
||||
"base": "http://example.org/foo/bar",
|
||||
"href": "gopher://example.com/",
|
||||
"origin": "gopher://example.com",
|
||||
"href": "gopher:example.com/",
|
||||
"origin": "null",
|
||||
"protocol": "gopher:",
|
||||
"username": "",
|
||||
"password": "",
|
||||
"host": "example.com",
|
||||
"hostname": "example.com",
|
||||
"host": "",
|
||||
"hostname": "",
|
||||
"port": "",
|
||||
"pathname": "/",
|
||||
"pathname": "example.com/",
|
||||
"search": "",
|
||||
"hash": ""
|
||||
},
|
||||
@ -2511,14 +2511,14 @@
|
||||
{
|
||||
"input": "gopher://foo:70/",
|
||||
"base": "about:blank",
|
||||
"href": "gopher://foo/",
|
||||
"origin": "gopher://foo",
|
||||
"href": "gopher://foo:70/",
|
||||
"origin": "null",
|
||||
"protocol": "gopher:",
|
||||
"username": "",
|
||||
"password": "",
|
||||
"host": "foo",
|
||||
"host": "foo:70",
|
||||
"hostname": "foo",
|
||||
"port": "",
|
||||
"port": "70",
|
||||
"pathname": "/",
|
||||
"search": "",
|
||||
"hash": ""
|
||||
@ -2527,7 +2527,7 @@
|
||||
"input": "gopher://foo:443/",
|
||||
"base": "about:blank",
|
||||
"href": "gopher://foo:443/",
|
||||
"origin": "gopher://foo:443",
|
||||
"origin": "null",
|
||||
"protocol": "gopher:",
|
||||
"username": "",
|
||||
"password": "",
|
||||
@ -2750,15 +2750,15 @@
|
||||
{
|
||||
"input": "gopher:/example.com/",
|
||||
"base": "about:blank",
|
||||
"href": "gopher://example.com/",
|
||||
"origin": "gopher://example.com",
|
||||
"href": "gopher:/example.com/",
|
||||
"origin": "null",
|
||||
"protocol": "gopher:",
|
||||
"username": "",
|
||||
"password": "",
|
||||
"host": "example.com",
|
||||
"hostname": "example.com",
|
||||
"host": "",
|
||||
"hostname": "",
|
||||
"port": "",
|
||||
"pathname": "/",
|
||||
"pathname": "/example.com/",
|
||||
"search": "",
|
||||
"hash": ""
|
||||
},
|
||||
@ -2915,15 +2915,15 @@
|
||||
{
|
||||
"input": "gopher:example.com/",
|
||||
"base": "about:blank",
|
||||
"href": "gopher://example.com/",
|
||||
"origin": "gopher://example.com",
|
||||
"href": "gopher:example.com/",
|
||||
"origin": "null",
|
||||
"protocol": "gopher:",
|
||||
"username": "",
|
||||
"password": "",
|
||||
"host": "example.com",
|
||||
"hostname": "example.com",
|
||||
"host": "",
|
||||
"hostname": "",
|
||||
"port": "",
|
||||
"pathname": "/",
|
||||
"pathname": "example.com/",
|
||||
"search": "",
|
||||
"hash": ""
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user