mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-21 04:31:26 +00:00
13 lines
533 B
HTML
13 lines
533 B
HTML
|
<!DOCTYPE html>
|
||
|
<script type="text/javascript" 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>
|