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

Side by Side Diff: LayoutTests/compositing/visibility/visibility-composited.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> 5 <style>
6 .set { 6 .set {
7 position: absolute; 7 position: absolute;
8 top: 8px; 8 top: 8px;
9 } 9 }
10 .box { 10 .box {
(...skipping 13 matching lines...) Expand all
24 .visible { 24 .visible {
25 visibility: visible; 25 visibility: visible;
26 } 26 }
27 .should-be-hidden { 27 .should-be-hidden {
28 background-color: red !important; 28 background-color: red !important;
29 } 29 }
30 .should-be-visible { 30 .should-be-visible {
31 background-color: green !important; 31 background-color: green !important;
32 } 32 }
33 .composited { 33 .composited {
34 -webkit-transform: translateZ(1px); 34 transform: translateZ(1px);
35 } 35 }
36 36
37 .visible-indicator { 37 .visible-indicator {
38 background-color: green; 38 background-color: green;
39 } 39 }
40 40
41 .hidden-indicator { 41 .hidden-indicator {
42 background-color: red; 42 background-color: red;
43 } 43 }
44 </style> 44 </style>
(...skipping 18 matching lines...) Expand all
63 </div> 63 </div>
64 </div> 64 </div>
65 65
66 <div class="hidden container"> 66 <div class="hidden container">
67 <div class="visible composited box should-be-visible"> 67 <div class="visible composited box should-be-visible">
68 </div> 68 </div>
69 </div> 69 </div>
70 </div> 70 </div>
71 </body> 71 </body>
72 </html> 72 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698