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

Side by Side Diff: third_party/WebKit/LayoutTests/fullscreen/video-webkit-transform-expected.html

Issue 1363023005: Implement FullScreen using top layer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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>Test that fullscreen video should not be affected by webkit-transform.</p>
2 <video id="video" allowfullscreen></video> 3 <video id="video" allowfullscreen></video>
3 <script> 4 <script>
4 if (window.internals) 5 if (window.internals)
5 runPixelTests = true; 6 runPixelTests = true;
6 </script> 7 </script>
7 <script src="full-screen-test.js"></script> 8 <script src="full-screen-test.js"></script>
8 <script> 9 <script>
9 var video = document.getElementById('video'); 10 var video = document.getElementById('video');
10 11
11 waitForEvent(document, 'webkitfullscreenchange', function() 12 waitForEvent(document, 'webkitfullscreenchange', function()
12 { 13 {
13 endTest(); 14 endTest();
14 }); 15 });
15 16
16 runWithKeyDown(function() 17 runWithKeyDown(function()
17 { 18 {
18 video.webkitRequestFullScreen(); 19 video.webkitRequestFullScreen();
19 }); 20 });
20 </script> 21 </script>
21 22
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/fullscreen/resources/empty.html ('k') | third_party/WebKit/Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698