summaryrefslogtreecommitdiffstats
path: root/dom/security/test/csp/file_pdfjs_not_subject_to_csp.html
blob: da5c7f0a6ecd72b6791fd89dbc5fcf11710d5a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
  <meta http-equiv="Content-Security-Policy" content="script-src 'self' 'nonce-allowPDF'; base-uri 'self'">
</head>
<body>
<iframe id="pdfFrame"></iframe>
<br/>
<button id="pdfButton">click to load pdf</button>
<script nonce="allowPDF">
  async function loadPDFIntoIframe() {
    let response = await fetch("dummy.pdf");
    let blob = await response.blob();
    var blobUrl = URL.createObjectURL(blob);
    var pdfFrame = document.getElementById("pdfFrame");
    pdfFrame.src = blobUrl;
  }
  let pdfButton = document.getElementById("pdfButton");
  pdfButton.addEventListener("click", loadPDFIntoIframe);
</script>
</body>
</html>