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

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

Issue 227493007: Merge 170810 "Fix an issue that webkit-transform might impact fu..." (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/1916/
Patch Set: Created 6 years, 8 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-webkit-transform-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <p>Test that fullscreen video should not be affected by webkit-transform.</p> 2 <p>Test that fullscreen video should not be affected by webkit-transform.</p>
3 <video id="video" width="300" style="-webkit-transform:scale(0.8, 0.8) translate (-200px, -100px);" allowfullscreen></video> 3 <video id="video" width="300" style="-webkit-transform:scale(0.8, 0.8) translate (-200px, -100px);" allowfullscreen></video>
4 <script> 4 <script>
5 if (window.internals) 5 if (window.internals)
6 runPixelTests = true; 6 runPixelTests = true;
7 </script> 7 </script>
8 <script src="full-screen-test.js"></script> 8 <script src="full-screen-test.js"></script>
9 <script> 9 <script>
10 var video = document.getElementById('video'); 10 var video = document.getElementById('video');
11 11
12 waitForEvent(document, 'webkitfullscreenchange', function() 12 waitForEvent(document, 'webkitfullscreenchange', function()
13 { 13 {
14 endTest(); 14 endTest();
15 }); 15 });
16 16
17 runWithKeyDown(function() 17 runWithKeyDown(function()
18 { 18 {
19 video.webkitRequestFullScreen(); 19 video.webkitRequestFullScreen();
20 }); 20 });
21 </script> 21 </script>
22 22
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fullscreen/video-webkit-transform-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698