blob: 90e8372db1e67c05f241c1195796302c593c811c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<!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>
|