Bug 1519893 - Test the alwaysOnTop feature for Windows. r=aklotz

These tests make sure that passing alwaysOnTop as a window feature
results in a window with WS_EX_TOPMOST, and also ensures that web
content cannot request alwaysOnTop windows.

Differential Revision: https://phabricator.services.mozilla.com/D16570

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Mike Conley 2019-01-15 22:29:21 +00:00
Родитель 7e920fe573
Коммит d845c30b3b
3 изменённых файлов: 89 добавлений и 0 удалений

Просмотреть файл

@ -88,6 +88,10 @@ const DISALLOWED = {
flag: Ci.nsIWebBrowserChrome.CHROME_WINDOW_RAISED,
defaults_to: false,
},
"alwaysOnTop": {
flag: Ci.nsIWebBrowserChrome.CHROME_ALWAYS_ON_TOP,
defaults_to: false,
},
"suppressanimation": {
flag: Ci.nsIWebBrowserChrome.CHROME_SUPPRESS_ANIMATION,
defaults_to: false,

Просмотреть файл

@ -1,6 +1,8 @@
[DEFAULT]
tags = openwindow
[test_alwaysOnTop_windows.html]
skip-if = os != "win"
[test_dialog_arguments.html]
support-files =
file_test_dialog.html

Просмотреть файл

@ -0,0 +1,83 @@
<!DOCTYPE HTML>
<html>
<!--
Tests the alwaysOnTop window feature for the Windows OS.
-->
<head>
<meta charset="utf-8">
<title>Test an alwaysOnTop window on Windows</title>
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<script src="chrome://mochikit/content/tests/SimpleTest/AddTask.js"></script>
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
<script type="application/javascript">
ChromeUtils.import("resource://testing-common/BrowserTestUtils.jsm");
ChromeUtils.import("resource://gre/modules/ctypes.jsm");
function assertAlwaysOnTop(win, expected) {
let docShell = win.docShell;
let chromeFlags = docShell.treeOwner
.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIXULWindow)
.chromeFlags;
let hasFlag = !!(chromeFlags & Ci.nsIWebBrowserChrome.CHROME_ALWAYS_ON_TOP);
is(hasFlag, expected, "Window should have CHROME_ALWAYS_ON_TOP flag.");
const hWND = Number(win.docShell.treeOwner.nsIBaseWindow.nativeHandle);
const WS_EX_TOPMOST = 0x00000008;
const GWL_EXSTYLE = -20;
let lib = ctypes.open("user32.dll");
// On 32-bit systems, the function we need to call is GetWindowLongW. On
// 64-bit systems, the function is GetWindowLongPtrW. Interestingly,
// the MSDN page[1] for GetWindowLongPtrW claims that calling it should work
// on both 32-bit and 64-bit, but that didn't appear to be the case here
// with local testing, hence the conditional.
//
// [1]: https://docs.microsoft.com/en-us/windows/desktop/api/winuser/nf-winuser-getwindowlongptrw
let GetWindowFuncSymbol = Services.appinfo.is64Bit ? "GetWindowLongPtrW"
: "GetWindowLongW";
let GetWindowFunc = lib.declare(GetWindowFuncSymbol, ctypes.winapi_abi,
ctypes.intptr_t, ctypes.uintptr_t,
ctypes.int);
let styles = GetWindowFunc(hWND, GWL_EXSTYLE);
let isAlwaysOnTop = !!(styles & WS_EX_TOPMOST);
is(isAlwaysOnTop, expected, "Window should be always on top.");
lib.close();
}
if (Services.appinfo.OS != "WINNT") {
ok(false, "This test is only designed to run on Windows.");
} else {
add_task(async function() {
let normalWinOpened = BrowserTestUtils.domWindowOpened();
window.openDialog("data:text/html,<p>This is a normal window. </p>",
"_blank", "chrome,width=100,height=100", null);
let normalWin = await normalWinOpened;
ok(normalWin, "Normal window opened");
assertAlwaysOnTop(normalWin, false);
await BrowserTestUtils.closeWindow(normalWin);
let alwaysOnTopWinOpened = BrowserTestUtils.domWindowOpened();
window.openDialog("data:text/html,<p>This is an alwaysOnTop window. </p>",
"_blank", "chrome,width=100,height=100,alwaysOnTop", null);
let alwaysOnTopWin = await alwaysOnTopWinOpened;
ok(alwaysOnTopWin, "AlwaysOnTop window opened");
assertAlwaysOnTop(alwaysOnTopWin, true);
await BrowserTestUtils.closeWindow(alwaysOnTopWin);
});
}
</script>
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
</pre>
</body>
</html>