gecko-dev/testing/web-platform/tests/fullscreen/api/element-request-fullscreen-and-remove-iframe-manual.html
James Graham 3f997c7d6e Bug 1367340 - Update web-platform-tests to revision a2d29f3497c889546662566721bbd4f86efdbedd, a=testonly
MozReview-Commit-ID: G7hh5RgrlOv


--HG--
rename : testing/web-platform/tests/content-security-policy/navigation/to-javascript-url.html => testing/web-platform/tests/content-security-policy/navigation/to-javascript-url-script-src.html
rename : testing/web-platform/tests/webusb/idlharness.html => testing/web-platform/tests/webusb/idlharness.https.html
2017-05-24 14:03:28 +01:00

28 lines
1.1 KiB
HTML

<!DOCTYPE html>
<title>Element#requestFullscreen() in iframe followed by removing the iframe</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../trusted-click.js"></script>
<div id="log"></div>
<iframe allowfullscreen></iframe>
<script>
async_test(t => {
const iframe = document.querySelector("iframe");
const iframeDocument = iframe.contentDocument;
document.onfullscreenchange = t.unreached_func("fullscreenchange event");
document.onfullscreenerror = t.unreached_func("fullscreenerror event");
iframeDocument.onfullscreenchange = t.unreached_func("iframe fullscreenchange event");
iframeDocument.onfullscreenerror = t.unreached_func("iframe fullscreenerror event");
trusted_click(t, () => {
iframeDocument.body.requestFullscreen();
iframe.remove();
// No events will be fired, end test after 100ms.
step_timeout(t.step_func_done(() => {
assert_equals(document.fullscreenElement, null);
assert_equals(iframeDocument.fullscreenElement, null);
}), 100);
}, document.body);
});
</script>