mirror of
https://github.com/servo/servo.git
synced 2025-06-24 17:14:33 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<title>Element#requestFullscreen() for top element in fullscreen element stack</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="top"></div>
|
|
<script>
|
|
async_test(function(t)
|
|
{
|
|
var top = document.getElementById("top");
|
|
trusted_request(t, top);
|
|
document.onfullscreenchange = t.step_func(function()
|
|
{
|
|
assert_equals(document.fullscreenElement, top);
|
|
document.onfullscreenchange = t.unreached_func("fullscreenchange event");
|
|
trusted_click(t, function()
|
|
{
|
|
top.requestFullscreen();
|
|
// A fullscreenerror event would be fired after an async section
|
|
// and an animation frame task, so wait until after that.
|
|
t.step_timeout(function()
|
|
{
|
|
requestAnimationFrame(t.step_func_done());
|
|
}, 0);
|
|
}, top);
|
|
});
|
|
document.onfullscreenerror = t.unreached_func("fullscreenerror event");
|
|
});
|
|
</script>
|