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

Side by Side Diff: LayoutTests/fullscreen/full-screen-request.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 <script src="full-screen-test.js"></script> 2 <script src="full-screen-test.js"></script>
3 <script> 3 <script>
4 // Bail out early if the full screen API is not enabled or is missing: 4 waitForEventTestAndEnd(document, 'webkitfullscreenchange', "document.webkitI sFullScreen==true");
5 if (Element.prototype.webkitRequestFullScreen == undefined) { 5 runWithKeyDown(function(){document.documentElement.webkitRequestFullScreen() });
6 logResult(false, "Element.prototype.webkitRequestFullScreen == undefined ");
7 endTest();
8 } else {
9 waitForEventTestAndEnd(document, 'webkitfullscreenchange', "document.web kitIsFullScreen==true");
10 runWithKeyDown(function(){document.documentElement.webkitRequestFullScre en()});
11 }
12 </script> 6 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fullscreen/full-screen-render-inline.html ('k') | LayoutTests/fullscreen/full-screen-request-rejected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698