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

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

Powered by Google App Engine
This is Rietveld 408576698