1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-11 02:49:06 +00:00
Files
UXP/testing/web-platform/tests/fullscreen/api/document-onfullscreenerror.html
T

14 lines
421 B
HTML

<!DOCTYPE html>
<title>Document.onfullscreenerror</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
async_test(function(t)
{
assert_equals(document.onfullscreenerror, null, "initial onfullscreenerror");
document.onfullscreenerror = t.step_func_done();
document.createElement("a").requestFullscreen();
});
</script>