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

Side by Side Diff: LayoutTests/compositing/reflections/deeply-nested-reflections.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 PUBLIC "-//W3C//DTD HTML 4.01//EN" 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd"> 2 "http://www.w3.org/TR/html4/strict.dtd">
3 3
4 <html> 4 <html>
5 <head> 5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
7 7
8 <style type="text/css" media="screen"> 8 <style type="text/css" media="screen">
9 9
10 div { 10 div {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 } 42 }
43 43
44 .box { 44 .box {
45 width: 100px; 45 width: 100px;
46 height: 100px; 46 height: 100px;
47 text-align: center; 47 text-align: center;
48 font-size: 48pt; 48 font-size: 48pt;
49 background-color: green; 49 background-color: green;
50 } 50 }
51 .compositing { 51 .compositing {
52 -webkit-transform: translateZ(0); 52 transform: translateZ(0);
53 } 53 }
54 54
55 </style> 55 </style>
56 56
57 </head> 57 </head>
58 <body> 58 <body>
59 59
60 <p>Deeply nested reflections.</p> 60 <p>Deeply nested reflections.</p>
61 <div class="level4"> 61 <div class="level4">
62 <div class="level3"> 62 <div class="level3">
63 <div class="level2"> 63 <div class="level2">
64 <div class="level1"> 64 <div class="level1">
65 <div class="compositing box">C</div> 65 <div class="compositing box">C</div>
66 </div> 66 </div>
67 </div> 67 </div>
68 </div> 68 </div>
69 </div> 69 </div>
70 70
71 </body> 71 </body>
72 </html> 72 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698