summaryrefslogtreecommitdiffstats
path: root/dom/security/test/csp/file_data_doc_ignore_meta_csp.html
blob: 9d6e9834dd710b27f97808679d492e9bab6136b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE HTML>
<html>
<head>
  <title>Bug 1382869: data document should ignore meta csp</title>
  <meta charset="utf-8">
</head>
<body>
<script type="application/javascript">
  // 1) create a data document
  const doc = document.implementation.createHTMLDocument();
  // 2) add meta csp to that document
  const metaEl = doc.createElement('meta');
  metaEl.setAttribute('http-equiv', 'Content-Security-Policy');
  metaEl.setAttribute('content', "img-src 'none'");
  doc.head.appendChild(metaEl);
  // 3) let the parent know we are done here
  var result = "dataDocCreated";
  window.parent.postMessage({result}, "*");
</script>

</body>
</html>