2 <div>This tests that the
<code>fullscreenEnabled
</code> property is false when fullscreen
3 is not supported as laid out in section
4 of the
4 <a href=
"http://fullscreen.spec.whatwg.org/#api">Fullscreen API
</a> living
6 <script src=
"full-screen-test.js"></script>
8 window
.internals
.settings
.setFullscreenSupported(false);
10 testExpected('document.webkitFullscreenEnabled', false);
12 var iframe
= document
.documentElement
.appendChild(document
.createElement('iframe'));
13 iframe
.setAttribute('allowfullscreen', 'true');
14 testExpected('iframe.contentDocument.webkitFullscreenEnabled', false);