mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9019981c05
This patch adds support for a "non-private" window flag which can be used to open new chrome windows in non-private mode in per-window private browsing builds. It also tests to make sure that the flag is not accessible from content.
13 lines
519 B
HTML
13 lines
519 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.isWindowPrivate(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.isWindowPrivate(win));
|
|
win.close();
|
|
</script>
|