summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/portals/resources/portal-repeated-activate-window.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/portals/resources/portal-repeated-activate-window.html')
-rw-r--r--testing/web-platform/tests/portals/resources/portal-repeated-activate-window.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/web-platform/tests/portals/resources/portal-repeated-activate-window.html b/testing/web-platform/tests/portals/resources/portal-repeated-activate-window.html
new file mode 100644
index 0000000000..e716034eff
--- /dev/null
+++ b/testing/web-platform/tests/portals/resources/portal-repeated-activate-window.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<body>
+ <portal src="simple-portal-adopts-and-activates-predecessor.html">
+ <script>
+ function activate() {
+ var portal = document.querySelector("portal");
+ portal.activate().then(() => document.body.removeChild(portal));
+ }
+
+ var count = 0;
+ window.onportalactivate = e => {
+ ++count;
+ if (count == 1) {
+ e.adoptPredecessor().activate();
+ } else {
+ window.opener.postMessage("done", "*");
+ }
+ };
+ </script>
+</body>