servo/tests/wpt/web-platform-tests/fullscreen/api/element-ready-check-fullscreen-iframe-child-manual.html
Ms2ger 296fa2512b Update web-platform-tests and CSS tests.
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180.
- Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
2017-02-06 22:38:29 +01:00

33 lines
1.2 KiB
HTML

<!DOCTYPE html>
<title>Element ready check for child of a fullscreen 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><!-- script inserts div here --></iframe>
<script>
// Verify that an iframe can itself go fullscreen, and that this doesn't
// influence the iframe ancestor test of the element ready check.
async_test(t => {
var iframe = document.querySelector("iframe");
document.onfullscreenchange = t.step_func(() => {
assert_equals(document.fullscreenElement, iframe, "fullscreen element");
// This adds the div to the iframe element itself, not to the iframe's
// contentDocument. It's done here because the HTML parser treats the
// content of iframe as a text node.
var div = document.createElement("div");
iframe.appendChild(div);
document.onfullscreenchange = t.step_func_done(() => {
assert_equals(document.fullscreenElement, div);
});
document.onfullscreenerror = t.unreached_func("fullscreenerror event");
trusted_request(t, div, iframe.contentDocument.body);
});
trusted_request(t, iframe);
});
</script>