mirror of
https://github.com/servo/servo.git
synced 2025-07-12 18:03:49 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
33 lines
1.2 KiB
HTML
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>
|