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

Side by Side Diff: LayoutTests/compositing/squashing/repaint-child-of-squashed.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 <head> 2 <head>
3 <script src="../../resources/run-after-display.js"></script> 3 <script src="../../resources/run-after-display.js"></script>
4 <style> 4 <style>
5 .composited { 5 .composited {
6 -webkit-transform: translatez(0); 6 transform: translatez(0);
7 } 7 }
8 8
9 .box { 9 .box {
10 width: 100px; 10 width: 100px;
11 height: 100px; 11 height: 100px;
12 } 12 }
13 13
14 .behind { 14 .behind {
15 position: absolute; 15 position: absolute;
16 z-index: 1; 16 z-index: 1;
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 </div> 78 </div>
79 79
80 <div id="testResults" style="display:none"> 80 <div id="testResults" style="display:none">
81 CASE 1, original layer tree 81 CASE 1, original layer tree
82 <pre id="Case1"></pre> 82 <pre id="Case1"></pre>
83 83
84 CASE 2, change color of "inner" to red 84 CASE 2, change color of "inner" to red
85 <pre id="Case2"></pre> 85 <pre id="Case2"></pre>
86 </div> 86 </div>
87 </body> 87 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698