1
0
Fork 0
firefox/dom/security/test/csp/test_xslt_inherits_csp.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

33 lines
1 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Bug 1597645: Make sure XSLT inherits the CSP r=ckerschb</title>
<!-- Including SimpleTest.js so we can use waitForExplicitFinish !-->
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<body>
<iframe src="file_xslt_inherits_csp.xml"></iframe>
<script class="testbody">
SimpleTest.requestCompleteLog();
SimpleTest.waitForExplicitFinish();
let frame = document.querySelector("iframe");
window.addEventListener("load",()=>{
let link = frame.contentWindow.document.querySelector("a");
link.click(); //
requestAnimationFrame(()=>{
// Wait one Frame to let the browser catch up
// before checking the dom.
let res = !frame.contentWindow.document.body.innerText.includes("JS DID EXCECUTE");
ok(res, "The CSP did block injected JS ");
SimpleTest.finish();
});
})
</script>
</html>