summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/trusted-types/DOMParser-parseFromString-regression.html
blob: 941d1750b4a3d4fd0c53a48c62689f9665e64dc3 (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
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<meta http-equiv="Content-Security-Policy" content="blabla">
<body>
<div id="target"></div>
<div id="probe"></div>
<script>
test(t => {
  // Regression test for crbug.com/1030830. (Should work in any browser, though.)
  //
  // The top-level doc has a CSP that doesn't do anything interesting. We'll
  // parse a doc and create an iframe with an embedded CSP, and will ensure that
  // the CSP applies to the frame, but not the top-level doc.
  const target = document.getElementById("target");
  const probe = document.getElementById("probe");
  probe.innerHTML = "probe";

  const doc = new DOMParser().parseFromString(`
    <body><div id="probe"></div></body>"`, "text/html");
  probe.innerHTML = "probe";

  const frame = document.createElement("iframe");
  frame.src = `data:text/html;${encodeURI(doc.documentElement.outerHTML)}`;
  frame.id = "frame";
  target.appendChild(frame);
  const frame_probe = document.getElementById("frame").contentDocument.getElementById("probe");
  probe.innerHTML = "probe";
  assert_throws_js(TypeError, _ => { frame_probe.innnerHTML = "probe" });
}, "Regression test for TT changes to parseFromString.");
</script>
</body>