summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/window-management/multi-screen-window-open.tentative.https.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/window-management/multi-screen-window-open.tentative.https.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/window-management/multi-screen-window-open.tentative.https.html')
-rw-r--r--testing/web-platform/tests/window-management/multi-screen-window-open.tentative.https.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/web-platform/tests/window-management/multi-screen-window-open.tentative.https.html b/testing/web-platform/tests/window-management/multi-screen-window-open.tentative.https.html
new file mode 100644
index 0000000000..708e571c27
--- /dev/null
+++ b/testing/web-platform/tests/window-management/multi-screen-window-open.tentative.https.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<meta name="timeout" content="long">
+<!-- user agents are not required to support open features other than `noopener`
+ and on some platforms position and size features don't make sense -->
+<meta name="flags" content="may">
+<title>Window Management test: target-screen window.open()</title>
+<link rel="help" href="https://w3c.github.io/window-management/">
+Tests use of multi-screen details to open a popup window on each screen.<br>
+The host device must have 2+ screens to yield meaningful results.<br><br>
+<button id="closeButton" onclick="closePopups">Close popups</button><br>
+<input id="autoClose" type="checkbox" checked=true>Auto-close popups</input>
+<ul id="list"></ul>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/resources/testdriver.js"></script>
+<script src="/resources/testdriver-vendor.js"></script>
+<script src="resources/helpers.js"></script>
+<script>
+'use strict';
+
+let popups = [];
+function closePopups() {
+ popups.forEach(p => p.close());
+ popups = [];
+}
+
+promise_test(async setUpTest => {
+ await setUpWindowManagement(setUpTest);
+ for (const s of window.screenDetails.screens) {
+ const name = `Open a popup on '${s.label}'`;
+ await promise_test(async test => {
+ await buttonClick(test, name);
+ popups.push(await openPopupOnScreen(s));
+ if (autoClose.checked)
+ closePopups();
+ }, name);
+ }
+}, 'Use multi-screen details to open a popup window on each screen');
+</script>