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

Side by Side Diff: LayoutTests/compositing/visibility/visibility-image-layers-dynamic.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 16 matching lines...) Expand all
27 .visible { 27 .visible {
28 visibility: visible; 28 visibility: visible;
29 } 29 }
30 .should-be-hidden { 30 .should-be-hidden {
31 background-color: red !important; 31 background-color: red !important;
32 } 32 }
33 .should-be-visible { 33 .should-be-visible {
34 background-color: green !important; 34 background-color: green !important;
35 } 35 }
36 .composited { 36 .composited {
37 -webkit-transform: translateZ(0); 37 transform: translateZ(0);
38 } 38 }
39 39
40 .visible-indicator { 40 .visible-indicator {
41 background-color: green; 41 background-color: green;
42 } 42 }
43 43
44 .hidden-indicator { 44 .hidden-indicator {
45 background-color: red; 45 background-color: red;
46 } 46 }
47 </style> 47 </style>
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 <h2>Initial</h2> 86 <h2>Initial</h2>
87 <pre id="layers1"></pre> 87 <pre id="layers1"></pre>
88 88
89 <h2>After step 1</h2> 89 <h2>After step 1</h2>
90 <pre id="layers2"></pre> 90 <pre id="layers2"></pre>
91 91
92 <h2>After step 2</h2> 92 <h2>After step 2</h2>
93 <pre id="layers3"></pre> 93 <pre id="layers3"></pre>
94 </body> 94 </body>
95 </html> 95 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698