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

Side by Side Diff: LayoutTests/compositing/layer-creation/overlap-negative-z-index-multiple.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 5
6 .composited { 6 .composited {
7 -webkit-transform:translatez(0); 7 transform:translatez(0);
8 } 8 }
9 9
10 .box { 10 .box {
11 width: 100px; 11 width: 100px;
12 height: 100px; 12 height: 100px;
13 } 13 }
14 14
15 .green { 15 .green {
16 background-color: green; 16 background-color: green;
17 } 17 }
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 <!-- This lime colored div should correctly detect overlap and become composit ed. --> 79 <!-- This lime colored div should correctly detect overlap and become composit ed. -->
80 <div class="lime box inmiddle"> </div> 80 <div class="lime box inmiddle"> </div>
81 81
82 <!-- The blue colord div should also correctly detect overlap on top of the se cond layer. --> 82 <!-- The blue colord div should also correctly detect overlap on top of the se cond layer. -->
83 <div class="blue box ontop"> </div> 83 <div class="blue box ontop"> </div>
84 84
85 <pre id="layertree"></pre> 85 <pre id="layertree"></pre>
86 </body> 86 </body>
87 87
88 </html> 88 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698