Chromium Code Reviews| Index: LayoutTests/fullscreen/full-screen-not-enabled-when-unsupported.html |
| diff --git a/LayoutTests/fullscreen/full-screen-not-enabled-when-unsupported.html b/LayoutTests/fullscreen/full-screen-not-enabled-when-unsupported.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..59aa9963dbce1979507b0e48eb7de529cbbcc05f |
| --- /dev/null |
| +++ b/LayoutTests/fullscreen/full-screen-not-enabled-when-unsupported.html |
| @@ -0,0 +1,15 @@ |
| +<body> |
| +<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.
|
| +is not supported as laid out in section 4 of the |
| +<a href="http://fullscreen.spec.whatwg.org/#api">Fullscreen API</a> living |
| +standard</div> |
| +<script src="full-screen-test.js"></script> |
| +<script> |
| + window.internals.settings.setFullscreenSupported(false); |
| + var iframe = document.documentElement.appendChild(document.createElement('iframe')); |
| + iframe.setAttribute('allowfullscreen', 'true'); |
| + |
| + testExpected('iframe.contentDocument.webkitFullscreenEnabled', false); |
| + endTest(); |
| +</script> |
| +</body> |