summaryrefslogtreecommitdiffstats
path: root/toolkit/components/windowcreator/test/test_private_window_from_content.html
blob: 82ba0d9388dff30851a85524c8c3e9cd88ee3caf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script>
  // Make sure that we cannot open private browsing windows from unprivileged content
  var win = window.open("about:blank", "_blank", "private");
  ok(!SpecialPowers.isContentWindowPrivate(win));
  win.close();
  // Also, make sure that passing non-private doesn't make any difference either
  win = window.open("about:blank", "_blank", "non-private");
  ok(!SpecialPowers.isContentWindowPrivate(win));
  win.close();
</script>