summaryrefslogtreecommitdiffstats
path: root/dom/security/test/general/test_assert_about_page_no_csp.html
blob: 06be4ce460dc743d2a5b34f5af8d846281389db9 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Bug 1490977: Test Assertion if content privileged about: page has no CSP</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<iframe id="testframe"></iframe>
<script class="testbody" type="text/javascript">

  // Test Setup: The test overrules the allowlist of about: pages that are allowed to load
  // without a CSP and makes sure to hit the assertion within AssertAboutPageHasCSP().

  SpecialPowers.setBoolPref("dom.security.skip_about_page_csp_allowlist_and_assert", true);

  SimpleTest.waitForExplicitFinish();
  SimpleTest.expectAssertions(0, 1);

  ok(true, "sanity: prefs flipped and test runs");
  let myFrame = document.getElementById("testframe");
  myFrame.src = "about:blank";
  // booom :-)

  SpecialPowers.setBoolPref("dom.security.skip_about_page_csp_allowlist_and_assert", false);
  SimpleTest.finish();
</script>
</pre>
</body>
</html>