Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fullscreen / video-specified-size.html
index 86ada90..4850445 100644 (file)
@@ -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>