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

Side by Side Diff: LayoutTests/compositing/will-change/containing-block-added-expected.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 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #container { 5 #container {
6 -webkit-transform: translateZ(0); 6 transform: translateZ(0);
7 position: absolute; 7 position: absolute;
8 left: 200px; 8 left: 200px;
9 top: 100px; 9 top: 100px;
10 width: 100px; 10 width: 100px;
11 height: 100px; 11 height: 100px;
12 background-color: blue; 12 background-color: blue;
13 } 13 }
14 14
15 .fixed { 15 .fixed {
16 position: fixed; 16 position: fixed;
17 left: 50px; 17 left: 50px;
18 top: 50px; 18 top: 50px;
19 width: 75px; 19 width: 75px;
20 height: 75px; 20 height: 75px;
21 background-color: green 21 background-color: green
22 } 22 }
23 </style> 23 </style>
24 </head> 24 </head>
25 25
26 <body> 26 <body>
27 <div id="container"> 27 <div id="container">
28 <div class="fixed"></div> 28 <div class="fixed"></div>
29 </div> 29 </div>
30 </body> 30 </body>
31 31
32 </html> 32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698