mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 15:28:39 +09:00
Bug 1330900 - Implement <script nomodule>
This patch implements: - noModule getter/setter for HTMLScriptElement - the nomodule attribute for HTMLScriptElement - the logic in nsScriptLoader that denies the loading of a nomodule script - tests Tag #618
This commit is contained in:
parent
9a89373299
commit
10b2e09718
9 changed files with 164 additions and 2 deletions
56
dom/html/test/test_script_module.html
Normal file
56
dom/html/test/test_script_module.html
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Test for HTMLScriptElement with nomodule attribute</title>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<script>
|
||||
onmessage = (e) => {
|
||||
if ("done" in e.data) {
|
||||
next();
|
||||
} else if ("check" in e.data) {
|
||||
ok(e.data.check, e.data.msg);
|
||||
} else {
|
||||
ok(false, "Unknown message");
|
||||
}
|
||||
}
|
||||
|
||||
var tests = [
|
||||
function() {
|
||||
SpecialPowers.pushPrefEnv({"set":[["dom.moduleScripts.enabled", true]]})
|
||||
.then(() => {
|
||||
var ifr = document.createElement('iframe');
|
||||
ifr.src = "file_script_module.html";
|
||||
document.body.appendChild(ifr);
|
||||
});
|
||||
},
|
||||
|
||||
function() {
|
||||
SpecialPowers.pushPrefEnv({"set":[["dom.moduleScripts.enabled", false]]})
|
||||
.then(() => {
|
||||
var ifr = document.createElement('iframe');
|
||||
ifr.src = "file_script_nomodule.html";
|
||||
document.body.appendChild(ifr);
|
||||
});
|
||||
},
|
||||
];
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
next();
|
||||
|
||||
function next() {
|
||||
if (!tests.length) {
|
||||
SimpleTest.finish();
|
||||
return;
|
||||
}
|
||||
|
||||
var test = tests.shift();
|
||||
test();
|
||||
}
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue