2 <title>Element ready check with enabled flag not set
</title>
3 <script src=
"../../resources/testharness.js"></script>
4 <script src=
"../../resources/testharnessreport.js"></script>
5 <script src=
"../trusted-event.js"></script>
11 var iframe
= document
.querySelector("iframe");
12 document
.onfullscreenchange
= t
.unreached_func("document fullscreenchange event");
13 document
.onfullscreenerror
= t
.unreached_func("document fullscreenerror event");
14 iframe
.contentDocument
.onfullscreenchange
= t
.unreached_func("iframe fullscreenchange event");
15 iframe
.contentDocument
.onfullscreenerror
= t
.step_func_done();
16 assert_false(iframe
.contentDocument
.fullscreenEnabled
, "fullscreen enabled flag");
17 trusted_request(iframe
.contentDocument
.body
, document
.body
);