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

Side by Side Diff: LayoutTests/fast/transforms/transform-overflow.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 type="text/css" media="screen"> 3 <style type="text/css" media="screen">
4 body { 4 body {
5 margin: 0; 5 margin: 0;
6 } 6 }
7 7
8 #one { 8 #one {
9 position:absolute; 9 position:absolute;
10 left: 50px; 10 left: 50px;
11 top:50px; 11 top:50px;
12 width:100px; 12 width:100px;
13 height:100px; 13 height:100px;
14 background-color:red; 14 background-color:red;
15 z-index:0; 15 z-index:0;
16 } 16 }
17 17
18 #two { 18 #two {
19 width:200px; 19 width:200px;
20 height:200px; 20 height:200px;
21 overflow: auto; 21 overflow: auto;
22 -webkit-transform: scale(0.5); 22 transform: scale(0.5);
23 background-color:green; 23 background-color:green;
24 z-index:0; 24 z-index:0;
25 } 25 }
26 </style> 26 </style>
27 </head> 27 </head>
28 <body> 28 <body>
29 <div id="one"></div> 29 <div id="one"></div>
30 <div id="two"></div> 30 <div id="two"></div>
31 <p>You should see one green square above</p> 31 <p>You should see one green square above</p>
32 </body> 32 </body>
33 </html> 33 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/transforms/transform-on-inline.html ('k') | LayoutTests/fast/transforms/transform-positioned-ancestor.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698