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

Unified Diff: LayoutTests/fullscreen/full-screen-twice.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-twice.html
diff --git a/LayoutTests/fullscreen/full-screen-twice.html b/LayoutTests/fullscreen/full-screen-twice.html
index 038aaaa8fa14ccf0ef7614979797b5c618be88b3..4abe318076fa4efee023d9c76044d5ba62ad1d50 100644
--- a/LayoutTests/fullscreen/full-screen-twice.html
+++ b/LayoutTests/fullscreen/full-screen-twice.html
@@ -2,20 +2,14 @@
<script src="full-screen-test.js"></script>
<span></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 span = document.getElementsByTagName("span")[0];
+ var span = document.getElementsByTagName("span")[0];
- var spanEnteredFullScreen = function() {
- testExpected("document.webkitCurrentFullScreenElement", span);
- waitForEventAndEnd(document, "webkitfullscreenerror");
- runWithKeyDown(function(){document.documentElement.webkitRequestFullScreen()});
- };
+ var spanEnteredFullScreen = function() {
+ testExpected("document.webkitCurrentFullScreenElement", span);
+ waitForEventAndEnd(document, "webkitfullscreenerror");
+ runWithKeyDown(function(){document.documentElement.webkitRequestFullScreen()});
+ };
- waitForEvent(document, "webkitfullscreenchange", spanEnteredFullScreen);
- runWithKeyDown(function(){span.webkitRequestFullScreen()});
- }
+ waitForEvent(document, "webkitfullscreenchange", spanEnteredFullScreen);
+ runWithKeyDown(function(){span.webkitRequestFullScreen()});
</script>
« no previous file with comments | « LayoutTests/fullscreen/full-screen-stacking-context.html ('k') | LayoutTests/fullscreen/full-screen-twice-newapi.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698