| var runPixelTests = true; |
| // Bail out early if the full screen API is not enabled or is missing: |
| if (Element.prototype.webkitRequestFullScreen == undefined) { |
| logResult(false, "Element.prototype.webkitRequestFullScreen == undefined"); |
| waitForEvent(document, 'webkitfullscreenchange', function() { |
| if (document.webkitIsFullScreen) |
| runWithKeyDown(function() { document.webkitCancelFullScreen(); }); |
| runWithKeyDown(goFullScreen); |
| function goFullScreen() { |
| document.getElementById('block1').webkitRequestFullScreen(); |
| <script src="full-screen-test.js"></script> |
| border: 4px solid darkgreen; |
| border: 4px solid darkred; |
| <div>This tests that an element with a positive z-index appears behind the full screen element. |
| After entering full screen mode, the green box should not be obscured by the red box. |
| Click <button onclick="goFullScreen()">go full screen</button> to run the test.</div> |