Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test has a WPT meta file that expects 3 subtest issues.
- This WPT test may be referenced by the following Test IDs:
- /fullscreen/api/element-request-fullscreen-namespaces.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Element#requestFullscreen() for an element in null namespace</title>
<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="../trusted-click.js"></script>
<div id="log"></div>
<script>
const supportedNS = [
];
for (const ns of unsupportedNS) {
promise_test(async (t) => {
const element = document.createElementNS(ns, "element");
document.body.appendChild(element);
document.onfullscreenchange = t.unreached_func(
"fullscreenchange event"
);
await promise_rejects_js(t, TypeError, trusted_request(element));
}, `requestFullscreen() fails for an element in ${ns} namespace`);
}
for (const { ns, elemName } of supportedNS) {
promise_test(async (t) => {
const element = document.createElementNS(ns, elemName);
document.body.appendChild(element);
await Promise.all([trusted_request(element), fullScreenChange()]);
await document.exitFullscreen();
}, `requestFullscreen() succeed for an element in ${ns} namespace`);
}
</script>