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

Side by Side Diff: LayoutTests/compositing/iframes/resources/large-composited-subframe.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style type="text/css" media="screen"> 5 <style type="text/css" media="screen">
6 body { 6 body {
7 height: 500px; 7 height: 500px;
8 width: 500px; 8 width: 500px;
9 background-color: silver; 9 background-color: silver;
10 } 10 }
11 11
12 .box { 12 .box {
13 height: 200px; 13 height: 200px;
14 width: 200px; 14 width: 200px;
15 margin: 100px; 15 margin: 100px;
16 background-color: blue; 16 background-color: blue;
17 -webkit-transform: translateZ(0); 17 transform: translateZ(0);
18 } 18 }
19 .box:hover { 19 .box:hover {
20 -webkit-transform: none; 20 transform: none;
21 } 21 }
22 </style> 22 </style>
23 </head> 23 </head>
24 <body> 24 <body>
25 25
26 <div id="iframe-content" class="box"> 26 <div id="iframe-content" class="box">
27 </div> 27 </div>
28 28
29 </body> 29 </body>
30 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698