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

Side by Side Diff: LayoutTests/compositing/framesets/resources/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 overflow:hidden; 7 overflow:hidden;
8 } 8 }
9 9
10 .box { 10 .box {
11 position:absolute; 11 position:absolute;
12 height: 200px; 12 height: 200px;
13 width: 200px; 13 width: 200px;
14 margin: 10px; 14 margin: 10px;
15 padding: 5px; 15 padding: 5px;
16 background-color: green; 16 background-color: green;
17 -webkit-transform: translateZ(0); 17 transform: translateZ(0);
18 overflow:hidden; 18 overflow:hidden;
19 } 19 }
20 .box:hover { 20 .box:hover {
21 -webkit-transform: none; 21 transform: none;
22 } 22 }
23 .testbox { 23 .testbox {
24 position:absolute; 24 position:absolute;
25 height: 200px; 25 height: 200px;
26 width: 200px; 26 width: 200px;
27 margin: 10px; 27 margin: 10px;
28 margin-left: 10px; 28 margin-left: 10px;
29 background-color: red; 29 background-color: red;
30 } 30 }
31 </style> 31 </style>
32 </head> 32 </head>
33 <body> 33 <body>
34 <div class="testbox"></div> 34 <div class="testbox"></div>
35 <div id="frame-content" class="box"></div> 35 <div id="frame-content" class="box"></div>
36 36
37 </body> 37 </body>
38 </html> 38 </html>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/flat-with-transformed-child.html ('k') | LayoutTests/compositing/generated-content.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698