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

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

Issue 399703002: Find the current fullscreen video element rather than the one on top of stack (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: layout test Created 6 years, 5 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
« no previous file with comments | « no previous file | LayoutTests/fullscreen/video-fail-to-enter-full-screen-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <body>
esprehn 2014/07/21 21:21:57 Leave out body
qinmin 2014/07/22 01:55:01 Done.
3 <p>This tests that the video should not be rendered in full screen if reques tFullScreen() fails.</p>
4 <video id="video" width="300"></video>
5 <script>
6 if (window.internals)
7 runPixelTests = internals.runtimeFlags.overlayFullscreenVideoEnabled ;
8 </script>
9 <script src="full-screen-test.js"></script>
10 <script src="../media/media-controls.js"></script>
11 <script>
12 var video = document.getElementById('video');
13 video.webkitRequestFullScreen();
14 setTimeout(function() {
15 endTest();
16 }, 300);
17 </script>
18 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fullscreen/video-fail-to-enter-full-screen-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698