Update scroll position immediately after resizing view
[framework/web/webkit-efl.git] / LayoutTests / fullscreen / full-screen-no-style-sharing.html
1 <body>
2     <video id="video1" width="1"></video>
3     <video id="video2" width="1"></video>
4     <script src="full-screen-test.js"></script>
5     <script src=../media/media-file.js></script>
6     <script>
7         var video2 = document.getElementById('video2');
8         // Bail out early if the full screen API is not enabled or is missing:
9         if (Element.prototype.webkitRequestFullScreen == undefined) {
10             logResult(false, "Element.prototype.webkitRequestFullScreen == undefined");
11             endTest();
12         } else {
13             waitForEventTestAndEnd(document, 'webkitfullscreenchange', "video2.clientWidth==document.body.clientWidth");
14             runWithKeyDown(function(){video2.webkitRequestFullScreen()});
15         }
16     </script>
17 </body>