Index: LayoutTests/fullscreen/full-screen-zIndex-after.html |
diff --git a/LayoutTests/fullscreen/full-screen-zIndex-after.html b/LayoutTests/fullscreen/full-screen-zIndex-after.html |
index 767c1ca3b5d92e169bbd85b8d3ac0cb7149c9fbb..2a82b510d684fe5aa196a749f8bcf50c89dbdc18 100644 |
--- a/LayoutTests/fullscreen/full-screen-zIndex-after.html |
+++ b/LayoutTests/fullscreen/full-screen-zIndex-after.html |
@@ -3,27 +3,22 @@ |
<head> |
<script> |
var runPixelTests = true; |
- |
+ |
function init() { |
// 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"); |
falken
2014/08/11 02:34:05
Let's change these double-quotes to single-quotes
philipj_slow
2014/08/11 11:22:08
Done.
|
endTest(); |
} else { |
- waitForEvent(document, 'webkitfullscreenchange', function() { |
- if (document.webkitIsFullScreen) |
- runWithKeyDown(function() { document.webkitCancelFullScreen(); }); |
- else { |
- endTest(); |
- } |
+ document.onwebkitfullscreenchange = function() { |
+ document.onwebkitfullscreenchange = endTest; |
+ document.webkitCancelFullScreen(); |
+ }; |
+ runWithKeyDown(function() { |
+ document.getElementById('block1').webkitRequestFullScreen(); |
}); |
- runWithKeyDown(goFullScreen); |
} |
} |
- |
- function goFullScreen() { |
- document.getElementById('block1').webkitRequestFullScreen(); |
- } |
</script> |
<script src="full-screen-test.js"></script> |
<style> |
@@ -50,11 +45,9 @@ |
</style> |
</head> |
<body onload="init()"> |
- <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> |
<div id="block2"></div> |
<div id="block3"> |
<div id="block1"></div> |
</div> |
</body> |
+</html> |