-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HTML: set location.protocol to non-broken-non-functioning schemes
See whatwg/url#61 for context. #4412 tests broken schemes.
- Loading branch information
Showing
3 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
html/browsers/history/the-location-interface/location-protocol-setter-non-broken-weird.html
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!doctype html> | ||
<title>Set location.protocol from an HTTP URL</title> | ||
<!-- In particular, valid non-broken schemes that are nevertheless not going to work --> | ||
<script src=/resources/testharness.js></script> | ||
<script src=/resources/testharnessreport.js></script> | ||
<div id=log></div> | ||
<iframe src=resources/dummy.html></iframe> | ||
<iframe src=resources/dummy.html></iframe> | ||
<iframe src=resources/dummy.html></iframe> | ||
<iframe src=resources/dummy.html></iframe> | ||
<iframe src=resources/dummy.html></iframe> | ||
<iframe src=resources/dummy.html></iframe> | ||
<script> | ||
self.onload = () => { | ||
[ | ||
'x', | ||
'data', | ||
'file', | ||
'ftp', | ||
'gopher', | ||
'http+x' | ||
].forEach((val, index) => { | ||
async_test((t) => { | ||
try { | ||
self[index].location.protocol = val | ||
t.step_timeout(() => { | ||
assert_equals(self[index].location.protocol, location.protocol) | ||
assert_equals(self[index].location.host, location.host) | ||
assert_equals(self[index].location.port, location.port) | ||
t.done() | ||
}, 500) | ||
} catch(e) { | ||
assert_unreached(e) | ||
} | ||
}) | ||
}) | ||
} | ||
</script> |
64 changes: 64 additions & 0 deletions
64
html/browsers/history/the-location-interface/location-protocol-setter-non-broken.html
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<!doctype html> | ||
<title>Set location.protocol to a non-broken-non-functioning scheme</title> | ||
<!-- In particular, valid non-broken schemes that are nevertheless not going to work --> | ||
<script src=/resources/testharness.js></script> | ||
<script src=/resources/testharnessreport.js></script> | ||
<div id=log></div> | ||
<script> | ||
self.onload = () => { | ||
[ | ||
'x', | ||
'data', | ||
// 'mailto' opens an email client in Firefox... | ||
'file', | ||
'ftp', | ||
'gopher', | ||
'http+x' | ||
].forEach((val) => { | ||
async_test((t) => { | ||
// HTTP URL <iframe> | ||
const frame = document.createElement("iframe") | ||
frame.src = "resources/dummy.html" | ||
frame.onload = t.step_func(() => { | ||
try { | ||
frame.contentWindow.location.protocol = val | ||
t.step_timeout(() => { | ||
assert_equals(frame.contentWindow.location.protocol, location.protocol) | ||
assert_equals(frame.contentWindow.location.host, location.host) | ||
assert_equals(frame.contentWindow.location.port, location.port) | ||
t.done() | ||
}, 500) | ||
} catch(e) { | ||
assert_unreached(e) | ||
} | ||
}) | ||
document.body.appendChild(frame) | ||
}, "Set HTTP URL frame location.protocol to " + val) | ||
|
||
async_test((t) => { | ||
// data URL <iframe> | ||
const dataFrame = document.createElement("iframe") | ||
const channel = new MessageChannel() | ||
dataFrame.src = `data:text/html,<script> | ||
onmessage = (e) => { | ||
let result = false; | ||
try { | ||
location.protocol = e.data | ||
} catch(e) { | ||
result = true | ||
} | ||
setTimeout(() => e.ports[0].postMessage([result, location.protocol]), 100) | ||
} | ||
<\/script>` | ||
dataFrame.onload = t.step_func(() => { | ||
dataFrame.contentWindow.postMessage(val, "*", [channel.port2]) | ||
}) | ||
channel.port1.onmessage = t.step_func_done((e) => { | ||
assert_false(e.data[0]) | ||
assert_equals(e.data[1], "data:") | ||
}) | ||
document.body.appendChild(dataFrame) | ||
}, "Set data URL frame location.protocol to " + val) | ||
}) | ||
} | ||
</script> |
Empty file.