mirror of
https://github.com/servo/servo.git
synced 2025-10-07 12:09:23 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
23 lines
780 B
HTML
23 lines
780 B
HTML
<!DOCTYPE html>
|
|
<title>Element ready check for sibling of fullscreen element</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="../trusted-click.js"></script>
|
|
<div id="log"></div>
|
|
<div id="a"></div>
|
|
<div id="b"></div>
|
|
<script>
|
|
async_test(function(t)
|
|
{
|
|
var a = document.getElementById("a");
|
|
var b = document.getElementById("b");
|
|
document.onfullscreenchange = t.step_func(function()
|
|
{
|
|
assert_equals(document.fullscreenElement, a, "fullscreen element");
|
|
trusted_request(t, b, a);
|
|
document.onfullscreenchange = t.unreached_func("second fullscreenchange event");
|
|
document.onfullscreenerror = t.step_func_done();
|
|
});
|
|
trusted_request(t, a);
|
|
});
|
|
</script>
|