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

Side by Side Diff: LayoutTests/media/video-zoom-controls.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 body { zoom: 150%; } 4 body { zoom: 150%; }
5 video { 5 video {
6 margin: 30px; 6 margin: 30px;
7 display: block; 7 display: block;
8 } 8 }
9 .rotated { 9 .rotated {
10 -webkit-transform: rotate(10deg); 10 transform: rotate(10deg);
11 } 11 }
12 </style> 12 </style>
13 <script src="media-file.js"></script> 13 <script src="media-file.js"></script>
14 <script src="video-paint-test.js"></script> 14 <script src="video-paint-test.js"></script>
15 </head> 15 </head>
16 <body onload="setSrcByTagName('video', findMediaFile('video', 'content/test')); init()"> 16 <body onload="setSrcByTagName('video', findMediaFile('video', 'content/test')); init()">
17 <p>Zoomed video with controls.</p> 17 <p>Zoomed video with controls.</p>
18 <video width="160" height="120" controls></video> 18 <video width="160" height="120" controls></video>
19 <video class="rotated" width="160" height="120" controls></video> 19 <video class="rotated" width="160" height="120" controls></video>
20 </body> 20 </body>
21 </html> 21 </html>
OLDNEW
« no previous file with comments | « LayoutTests/media/video-transformed.html ('k') | LayoutTests/perf/compositor-touch-hit-rects.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698