| 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..b173011472def7e040ff62d62b565f4af47c7490
|
| --- /dev/null
|
| +++ b/LayoutTests/fullscreen/full-screen-not-enabled-when-unsupported.html
|
| @@ -0,0 +1,17 @@
|
| +<body>
|
| +<div>This tests that the <code>fullscreenEnabled</code> property is false when fullscreen
|
| +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);
|
| +
|
| + testExpected('document.webkitFullscreenEnabled', false);
|
| +
|
| + var iframe = document.documentElement.appendChild(document.createElement('iframe'));
|
| + iframe.setAttribute('allowfullscreen', 'true');
|
| + testExpected('iframe.contentDocument.webkitFullscreenEnabled', false);
|
| + endTest();
|
| +</script>
|
| +</body>
|
|
|