Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <body> | |
|
falken
2014/07/31 14:53:10
ditto about <body>
Ignacio Solla
2014/08/01 10:02:44
Done.
| |
| 2 <script src="full-screen-test.js"></script> | |
| 3 <video id="video" width="300"></video> | |
| 4 <div>Tests for the fullScreenEnabled setting which will be set to false | |
| 5 in those platforms where full screen is not supported. | |
| 6 <script> | |
| 7 if (window.internals) { | |
| 8 window.internals.settings.setFullScreenEnabled(false); | |
| 9 | |
| 10 waitForEvent(document, 'webkitfullscreenchange', function() { | |
| 11 logResult("Entered full screen.", false); | |
|
falken
2014/07/31 14:53:10
Seems like these arguments are switched?
function
Ignacio Solla
2014/08/01 10:02:44
Done.
| |
| 12 endTest(); | |
| 13 }); | |
| 14 waitForEventAndEnd(document, 'webkitfullscreenerror'); | |
| 15 runWithKeyDown(function(){document.getElementById('video').webkitRequest FullScreen()}); | |
| 16 } | |
| 17 </script> | |
| 18 | |
|
falken
2014/07/31 14:53:10
nit: extra line here
Ignacio Solla
2014/08/01 10:02:44
Done.
| |
| OLD | NEW |