Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(270)

Unified Diff: LayoutTests/fullscreen/full-screen-zIndex-after.html

Issue 457663002: Convert more fullscreen tests to reftests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address feedback Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..ccf8ab4dc528cf78fdf345e3b65c6829c8e4226c 100644
--- a/LayoutTests/fullscreen/full-screen-zIndex-after.html
+++ b/LayoutTests/fullscreen/full-screen-zIndex-after.html
@@ -3,27 +3,23 @@
<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");
+ logResult(false, 'Element.prototype.webkitRequestFullScreen == undefined');
endTest();
} else {
- waitForEvent(document, 'webkitfullscreenchange', function() {
- if (document.webkitIsFullScreen)
- runWithKeyDown(function() { document.webkitCancelFullScreen(); });
- else {
- endTest();
- }
- });
+ document.onwebkitfullscreenchange = function() {
+ document.onwebkitfullscreenchange = endTest;
+ document.webkitCancelFullScreen();
+ };
+ function goFullScreen() {
+ document.getElementById('block1').webkitRequestFullScreen();
+ }
runWithKeyDown(goFullScreen);
}
}
-
- function goFullScreen() {
- document.getElementById('block1').webkitRequestFullScreen();
- }
</script>
<script src="full-screen-test.js"></script>
<style>
@@ -50,7 +46,7 @@
</style>
</head>
<body onload="init()">
- <div>This tests that an element with a positive z-index appears behind the full screen element.
+ <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>
@@ -58,3 +54,4 @@
<div id="block1"></div>
</div>
</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698