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

Unified Diff: LayoutTests/fullscreen/video-specified-size.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
« no previous file with comments | « LayoutTests/fullscreen/parent-flow-inline-with-block-child.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fullscreen/video-specified-size.html
diff --git a/LayoutTests/fullscreen/video-specified-size.html b/LayoutTests/fullscreen/video-specified-size.html
index 86ada9010abeb077cdff337a02de4c4853fc2f53..4850445f5774a30ac30c3f4f644cc6f5e19c754b 100644
--- a/LayoutTests/fullscreen/video-specified-size.html
+++ b/LayoutTests/fullscreen/video-specified-size.html
@@ -9,13 +9,7 @@
<script>
setSrcById("video", findMediaFile("video", "../media/content/test"));
var video = document.getElementById('video');
- // 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 {
- waitForEventTestAndEnd(document, 'webkitfullscreenchange', "video.clientWidth==document.body.clientWidth");
- runWithKeyDown(function(){video.webkitRequestFullScreen()});
- }
+ waitForEventTestAndEnd(document, 'webkitfullscreenchange', "video.clientWidth==document.body.clientWidth");
+ runWithKeyDown(function(){video.webkitRequestFullScreen()});
</script>
</body>
« no previous file with comments | « LayoutTests/fullscreen/parent-flow-inline-with-block-child.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698