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

Side by Side Diff: LayoutTests/fullscreen/full-screen-request-rejected.html

Issue 9950115: Revert 111028 - Support W3C Full Screen API proposal (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 8 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
OLDNEW
1 <body> 1 <body>
2 <script src="full-screen-test.js"></script> 2 <script src="full-screen-test.js"></script>
3 <div>This tests that a full-screen request which is not user-initiated will be r ejected. 3 <div>This tests that a full-screen request which is not user-initiated will be r ejected.
4 <script> 4 <script>
5 // Bail out early if the full screen API is not enabled or is missing: 5 // Bail out early if the full screen API is not enabled or is missing:
6 if (Element.prototype.webkitRequestFullScreen == undefined) { 6 if (Element.prototype.webkitRequestFullScreen == undefined) {
7 logResult(false, "Element.prototype.webkitRequestFullScreen == undefined "); 7 logResult(false, "Element.prototype.webkitRequestFullScreen == undefined ");
8 endTest(); 8 endTest();
9 } else { 9 } else {
10 waitForEvent(document, 'webkitfullscreenchange', function() { 10 waitForEvent(document, 'webkitfullscreenchange', function() {
11 logResult("Entered full screen.", false); 11 logResult("Entered full screen.", false);
12 endTest();
13 }); 12 });
14 if (layoutTestController)
15 layoutTestController.setPopupBlockingEnabled(true);
16 waitForEventAndEnd(document, 'webkitfullscreenerror'); 13 waitForEventAndEnd(document, 'webkitfullscreenerror');
17 document.documentElement.webkitRequestFullScreen(); 14 document.documentElement.webkitRequestFullScreen();
18 } 15 }
19 </script> 16 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fullscreen/full-screen-enabled-expected.txt ('k') | LayoutTests/fullscreen/full-screen-request-removed.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698