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

Side by Side Diff: LayoutTests/compositing/layer-creation/backing-requirement-changes-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 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 #outer { 4 #outer {
5 position: absolute; 5 position: absolute;
6 top: 0px; 6 top: 0px;
7 left: 0px; 7 left: 0px;
8 height: 300px; 8 height: 300px;
9 width: 300px; 9 width: 300px;
10 z-index: 1; 10 z-index: 1;
11 overflow: auto; 11 overflow: auto;
12 background-color: green; 12 background-color: green;
13 } 13 }
14 14
15 #inner { 15 #inner {
16 -webkit-transform: translateZ(0); 16 transform: translateZ(0);
17 background-color: blue; 17 background-color: blue;
18 } 18 }
19 19
20 #overlap { 20 #overlap {
21 width: 500px; 21 width: 500px;
22 height: 500px; 22 height: 500px;
23 background-color: yellow; 23 background-color: yellow;
24 -webkit-transform: translateZ(0); 24 transform: translateZ(0);
25 } 25 }
26 </style> 26 </style>
27 </head> 27 </head>
28 28
29 <body> 29 <body>
30 <div id="outer"> 30 <div id="outer">
31 <div id="inner"></div> 31 <div id="inner"></div>
32 </div> 32 </div>
33 <div id="overlap"></div> 33 <div id="overlap"></div>
34 </body> 34 </body>
35 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698