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

Side by Side Diff: LayoutTests/compositing/squashing/squashed-repaints.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 <script src="../../resources/run-after-display.js"></script> 4 <script src="../../resources/run-after-display.js"></script>
5 <style> 5 <style>
6 div { 6 div {
7 position: absolute; 7 position: absolute;
8 z-index: 1; 8 z-index: 1;
9 width: 100px; 9 width: 100px;
10 height: 100px; 10 height: 100px;
11 } 11 }
12 12
13 .composited { 13 .composited {
14 -webkit-transform: translatez(0); 14 transform: translatez(0);
15 top: 60px; 15 top: 60px;
16 left: 60px; 16 left: 60px;
17 background-color: gray; 17 background-color: gray;
18 } 18 }
19 19
20 .overlap1 { 20 .overlap1 {
21 top: 140px; 21 top: 140px;
22 left: 140px; 22 left: 140px;
23 background-color: blue; 23 background-color: blue;
24 } 24 }
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 CASE 4, overlap2 and overlap3 change color: 129 CASE 4, overlap2 and overlap3 change color:
130 <pre id="Case4"></pre> 130 <pre id="Case4"></pre>
131 131
132 CASE 5, overlap3 and overlap1 change color: 132 CASE 5, overlap3 and overlap1 change color:
133 <pre id="Case5"></pre> 133 <pre id="Case5"></pre>
134 </div> 134 </div>
135 135
136 </body> 136 </body>
137 137
138 </html> 138 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698