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

Side by Side Diff: LayoutTests/compositing/visibility/visibility-on-distant-descendant.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 type="text/css" media="screen"> 5 <style type="text/css" media="screen">
6 .hidden { 6 .hidden {
7 visibility: hidden; 7 visibility: hidden;
8 } 8 }
9 9
10 .visible { 10 .visible {
11 visibility: visible; 11 visibility: visible;
12 } 12 }
13 13
14 .box { 14 .box {
15 width: 300px; 15 width: 300px;
16 height: 300px; 16 height: 300px;
17 } 17 }
18 18
19 .composited { 19 .composited {
20 -webkit-transform: translatez(0); 20 transform: translatez(0);
21 } 21 }
22 22
23 .topLeft { 23 .topLeft {
24 position: absolute; 24 position: absolute;
25 top: 0px; 25 top: 0px;
26 left: 0px; 26 left: 0px;
27 } 27 }
28 28
29 .stackingContext { 29 .stackingContext {
30 position: absolute; 30 position: absolute;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 <div class="hidden stackingContext"> 64 <div class="hidden stackingContext">
65 <div class="visible green box"> 65 <div class="visible green box">
66 </div> 66 </div>
67 </div> 67 </div>
68 </div> 68 </div>
69 </div> 69 </div>
70 70
71 </div> 71 </div>
72 </body> 72 </body>
73 </html> 73 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698