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

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

Issue 428633004: Webkit setting for embedders that do not support fullscreen. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rename to fullscreenSupported 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
OLDNEW
(Empty)
1 <body>
2 <script src="full-screen-test.js"></script>
3 <video id="video" width="300"></video>
4 <div>Tests for the fullscreenSupported setting which will be set to false
5 in those platforms where fullscreen is not supported.
6 <script>
7 if (window.internals) {
8 window.internals.settings.setFullscreenSupported(false);
9
10 waitForEvent(document, 'webkitfullscreenchange', function() {
11 logResult(false, 'Entered fullscreen.');
12 endTest();
13 });
14 waitForEventAndEnd(document, 'webkitfullscreenerror');
15 runWithKeyDown(function(){document.getElementById('video').webkitRequest FullScreen()});
16 }
17 </script>
18 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698