OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <title>Element#requestFullscreen() followed by removing the element</title> |
| 3 <script src="../../resources/testharness.js"></script> |
| 4 <script src="../../resources/testharnessreport.js"></script> |
| 5 <script src="../trusted-click.js"></script> |
| 6 <div id="log"></div> |
| 7 <div id="target"></div> |
| 8 <script> |
| 9 // Adapted from https://github.com/w3c/web-platform-tests/pull/4250 |
| 10 // TODO(foolip): Remove this test when the above is imported and passing. |
| 11 async_test(t => { |
| 12 const target = document.getElementById("target"); |
| 13 |
| 14 document.onfullscreenchange = t.step_func_done(() => { |
| 15 assert_equals(document.fullscreenElement, null); |
| 16 }); |
| 17 document.onfullscreenerror = t.unreached_func("fullscreenchange event"); |
| 18 |
| 19 trusted_click(t.step_func(() => { |
| 20 target.requestFullscreen(); |
| 21 target.remove(); |
| 22 }), document.body); |
| 23 }); |
| 24 </script> |
OLD | NEW |