mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 9a4d479ed1347eb9184abc70d628a6da2297657a
This commit is contained in:
parent
b6cc0f60a9
commit
effeb278b6
120 changed files with 3731 additions and 298 deletions
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>Clicking on an <a> element with a download attribute and href that redirects to 'javascript:' should not navigate or execute</title>
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/#the-a-element:activation-behaviour">
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/links.html#attr-hyperlink-download">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<body>
|
||||
<script>
|
||||
"use strict";
|
||||
async_test(t => {
|
||||
const errorFrame = document.createElement("iframe");
|
||||
|
||||
errorFrame.addEventListener("load", t.step_func(function () {
|
||||
assert_false(errorFrame.contentWindow.executed);
|
||||
errorFrame.contentWindow.addEventListener(
|
||||
"beforeunload", t.unreached_func("Page should not navigate."));
|
||||
|
||||
errorFrame.contentDocument.querySelector("#error-url").click();
|
||||
t.step_timeout(_ => {
|
||||
assert_false(errorFrame.contentWindow.executed, "Redirecting to javascript: was suppressed.");
|
||||
t.done();
|
||||
}, 1000);
|
||||
}));
|
||||
errorFrame.src = "resources/a-download-redirect-to-javascript.html";
|
||||
document.body.appendChild(errorFrame);
|
||||
}, "Do not navigate or execute JS when redirecting a download to 'javascript:..'");
|
||||
</script>
|
||||
</body>
|
|
@ -0,0 +1,5 @@
|
|||
<!doctype html>
|
||||
<script>
|
||||
window.executed = false;
|
||||
</script>
|
||||
<a id="error-url" href="/common/redirect.py?location=javascript:window.executed=true" download="html.html">Click me</a>
|
Loading…
Add table
Add a link
Reference in a new issue