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

Side by Side Diff: LayoutTests/fullscreen/full-screen-no-style-sharing.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <body> 1 <body>
2 <video id="video1" width="1"></video> 2 <video id="video1" width="1"></video>
3 <video id="video2" width="1"></video> 3 <video id="video2" width="1"></video>
4 <script src="full-screen-test.js"></script> 4 <script src="full-screen-test.js"></script>
5 <script src=../media/media-file.js></script> 5 <script src=../media/media-file.js></script>
6 <script> 6 <script>
7 var video2 = document.getElementById('video2'); 7 var video2 = document.getElementById('video2');
8 // Bail out early if the full screen API is not enabled or is missing: 8 waitForEventTestAndEnd(document, 'webkitfullscreenchange', "video2.clien tWidth==document.body.clientWidth");
9 if (Element.prototype.webkitRequestFullScreen == undefined) { 9 runWithKeyDown(function(){video2.webkitRequestFullScreen()});
10 logResult(false, "Element.prototype.webkitRequestFullScreen == undef ined");
11 endTest();
12 } else {
13 waitForEventTestAndEnd(document, 'webkitfullscreenchange', "video2.c lientWidth==document.body.clientWidth");
14 runWithKeyDown(function(){video2.webkitRequestFullScreen()});
15 }
16 </script> 10 </script>
17 </body> 11 </body>
OLDNEW
« no previous file with comments | « LayoutTests/fullscreen/full-screen-line-boxes-crash.html ('k') | LayoutTests/fullscreen/full-screen-placeholder.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698