Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <body> | |
| 2 <div>This tests that the <code>fullscreenSupported</code> property is false when fullscreen | |
|
philipj_slow
2014/08/04 12:23:01
Oops, this should say webkitFullscreenEnabled I gu
Ignacio Solla
2014/08/04 12:31:58
Done.
| |
| 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 | |
| 5 standard</div> | |
| 6 <script src="full-screen-test.js"></script> | |
| 7 <script> | |
| 8 window.internals.settings.setFullscreenSupported(false); | |
| 9 var iframe = document.documentElement.appendChild(document.createElement('if rame')); | |
| 10 iframe.setAttribute('allowfullscreen', 'true'); | |
| 11 | |
| 12 testExpected('iframe.contentDocument.webkitFullscreenEnabled', false); | |
| 13 endTest(); | |
| 14 </script> | |
| 15 </body> | |
| OLD | NEW |