summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fullscreen/api/element-request-fullscreen-options.tentative.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/fullscreen/api/element-request-fullscreen-options.tentative.html')
-rw-r--r--testing/web-platform/tests/fullscreen/api/element-request-fullscreen-options.tentative.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fullscreen/api/element-request-fullscreen-options.tentative.html b/testing/web-platform/tests/fullscreen/api/element-request-fullscreen-options.tentative.html
new file mode 100644
index 0000000000..b2eb60088a
--- /dev/null
+++ b/testing/web-platform/tests/fullscreen/api/element-request-fullscreen-options.tentative.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<title>Element#requestFullscreen({ screen }) tentative support</title>
+<link rel="help" href="https://w3c.github.io/window-placement/" />
+<script src="/resources/testdriver.js"></script>
+<script src="/resources/testdriver-vendor.js"></script>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+ promise_test(async (t) => {
+ await test_driver.set_permission(
+ { name: "window-placement" },
+ "granted"
+ );
+
+ const options = {
+ get screen() {
+ return undefined;
+ },
+ };
+
+ await promise_rejects_js(
+ t,
+ TypeError,
+ document.body.requestFullscreen(options)
+ );
+ }, "fullscreenOptions.screen getter is invoked on requestFullscreen");
+</script>