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

Unified Diff: LayoutTests/fullscreen/full-screen-placeholder.html

Issue 462253003: Remove early returns in fullscreen tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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-placeholder.html
diff --git a/LayoutTests/fullscreen/full-screen-placeholder.html b/LayoutTests/fullscreen/full-screen-placeholder.html
index 503b6c0204cb254e788a4589c430e0381797eb59..a21c3721fb7645191cffccf94bc78fdeab3c313b 100644
--- a/LayoutTests/fullscreen/full-screen-placeholder.html
+++ b/LayoutTests/fullscreen/full-screen-placeholder.html
@@ -29,38 +29,32 @@
<div id="clear" />
<span id="two">Two</span>
<script>
- // 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");
- endTest();
- } else {
- var callback;
- var fullscreenChanged = function(event)
- {
- if (callback)
- callback(event)
- };
- document.onwebkitfullscreenchange = fullscreenChanged;
+ var callback;
+ var fullscreenChanged = function(event)
+ {
+ if (callback)
+ callback(event)
+ };
+ document.onwebkitfullscreenchange = fullscreenChanged;
- var div = document.getElementById("float");
+ var div = document.getElementById("float");
- var divEnteredFullScreen = function()
- {
- if (document.webkitCurrentFullScreenElement == div) {
- callback = cancelledFullScreen;
- runWithKeyDown(function(){document.webkitCancelFullScreen()});
- }
- };
+ var divEnteredFullScreen = function()
+ {
+ if (document.webkitCurrentFullScreenElement == div) {
+ callback = cancelledFullScreen;
+ runWithKeyDown(function(){document.webkitCancelFullScreen()});
+ }
+ };
- var cancelledFullScreen = function()
- {
- if (document.webkitCurrentFullScreenElement == null) {
- callback = null;
- endTest();
- }
- };
+ var cancelledFullScreen = function()
+ {
+ if (document.webkitCurrentFullScreenElement == null) {
+ callback = null;
+ endTest();
+ }
+ };
- callback = divEnteredFullScreen;
- runWithKeyDown(function(){div.webkitRequestFullScreen()});
- }
+ callback = divEnteredFullScreen;
+ runWithKeyDown(function(){div.webkitRequestFullScreen()});
</script>
« no previous file with comments | « LayoutTests/fullscreen/full-screen-no-style-sharing.html ('k') | LayoutTests/fullscreen/full-screen-remove.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698