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

Side by Side Diff: LayoutTests/fullscreen/video-fail-to-enter-full-screen.html

Issue 1278583004: Undo overlay fullscreen video background transparency (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove extraneous space Created 5 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <p>This tests that the video should not be rendered in full screen if requestFul lScreen() fails.</p> 2 <p>This tests that the video should not be rendered in full screen if requestFul lScreen() fails.</p>
3 <video id="video" width="300"></video> 3 <video id="video" width="300"></video>
4 <script> 4 <script>
5 if (window.internals) 5 if (window.internals)
6 runPixelTests = internals.runtimeFlags.overlayFullscreenVideoEnabled; 6 runPixelTests = internals.runtimeFlags.overlayFullscreenVideoEnabled || in ternals.runtimeFlags.forceOverlayFullscreenVideoEnabled;
7 </script> 7 </script>
8 <script src="full-screen-test.js"></script> 8 <script src="full-screen-test.js"></script>
9 <script src="../media/media-controls.js"></script> 9 <script src="../media/media-controls.js"></script>
10 <script> 10 <script>
11 var video = document.getElementById('video'); 11 var video = document.getElementById('video');
12 video.webkitRequestFullScreen(); 12 video.webkitRequestFullScreen();
13 setTimeout(function() { 13 setTimeout(function() {
14 endTest(); 14 endTest();
15 }, 300); 15 }, 300);
16 </script> 16 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fullscreen/video-controls-timeline.html ('k') | LayoutTests/fullscreen/video-specified-size.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698