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

Side by Side Diff: LayoutTests/compositing/background-color/background-color-change-to-transparent-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> 1 <!DOCTYPE>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #background { 5 #background {
6 width: 200px; 6 width: 200px;
7 height: 200px; 7 height: 200px;
8 display: block; 8 display: block;
9 background-color: transparent; 9 background-color: transparent;
10 } 10 }
11 .blue { 11 .blue {
12 width: 50px; 12 width: 50px;
13 height: 50px; 13 height: 50px;
14 background-color: blue; 14 background-color: blue;
15 display: block; 15 display: block;
16 } 16 }
17 17
18 .composited { 18 .composited {
19 -webkit-transform: translateZ(0); 19 transform: translateZ(0);
20 } 20 }
21 </style> 21 </style>
22 </head> 22 </head>
23 <body> 23 <body>
24 <div id="background"> 24 <div id="background">
25 <div class="blue"> 25 <div class="blue">
26 </div> 26 </div>
27 </div> 27 </div>
28 </body> 28 </body>
29 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698