diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/fullscreen/api/shadowroot-fullscreen-element.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/fullscreen/api/shadowroot-fullscreen-element.html')
-rw-r--r-- | testing/web-platform/tests/fullscreen/api/shadowroot-fullscreen-element.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fullscreen/api/shadowroot-fullscreen-element.html b/testing/web-platform/tests/fullscreen/api/shadowroot-fullscreen-element.html new file mode 100644 index 0000000000..5e605f00aa --- /dev/null +++ b/testing/web-platform/tests/fullscreen/api/shadowroot-fullscreen-element.html @@ -0,0 +1,47 @@ +<!doctype html> +<html> +<head> + <title>shadowRoot.fullscreenElement works correctly</title> + <link rel="author" title="Tim Nguyen" href="https://github.com/nt1m"> + <link rel="help" href="https://fullscreen.spec.whatwg.org/#dom-document-fullscreenelement"> +</head> +<div id="host"> + <button onclick="document.exitFullscreen()" id="exitButton">Exit fullscreen</button> +</div> +<button id="requestButton">Go fullscreen</button> + +<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> +promise_test(async function() { + let host = document.getElementById("host"); + host.attachShadow({ mode: "open" }).innerHTML = ` + <style> + #outer { width: 200px; height: 200px; background: blue } + </style> + <div id="outer"> + <slot></slot> + </div> + `; + let outer = host.shadowRoot.querySelector("#outer"); + await new Promise((resolve) => { + addEventListener("fullscreenchange", resolve, { once: true }); + requestButton.addEventListener("click", () => outer.requestFullscreen()); + test_driver.click(requestButton); + }); + + assert_equals(outer.getRootNode().fullscreenElement, outer, "Correct shadowRoot.fullscreenElement after entering"); + assert_equals(document.fullscreenElement, host, "Correct document.fullscreenElement after entering"); + + await new Promise((resolve) => { + addEventListener("fullscreenchange", resolve, { once: true }); + test_driver.click(exitButton); + }); + + assert_equals(outer.getRootNode().fullscreenElement, null, "Correct shadowRoot.fullscreenElement after exiting"); + assert_equals(document.fullscreenElement, null, "Correct document.fullscreenElement after exiting"); +}, "shadowRoot.fullscreenElement works correctly"); +</script> +</html> |