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

Side by Side Diff: LayoutTests/compositing/images/direct-image-dynamic-border-draws-content.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 .composited { 5 .composited {
6 -webkit-transform: translateZ(0); 6 transform: translateZ(0);
7 } 7 }
8 .border { 8 .border {
9 border: 2px solid blue; 9 border: 2px solid blue;
10 } 10 }
11 </style> 11 </style>
12 <script> 12 <script>
13 var layerText = ''; 13 var layerText = '';
14 14
15 function layerTreeText(message) { 15 function layerTreeText(message) {
16 return message + '\n\n' + window.internals.layerTreeAsText(document) + '\n '; 16 return message + '\n\n' + window.internals.layerTreeAsText(document) + '\n ';
(...skipping 19 matching lines...) Expand all
36 } 36 }
37 </script> 37 </script>
38 </head> 38 </head>
39 39
40 <!-- The image should have a blue border, and its composited layer.drawsContent should be true --> 40 <!-- The image should have a blue border, and its composited layer.drawsContent should be true -->
41 <body> 41 <body>
42 <img class="composited" onload="load(this)" src="../../fast/images/resources/g reen-256x256.jpg"> 42 <img class="composited" onload="load(this)" src="../../fast/images/resources/g reen-256x256.jpg">
43 <pre id="result"></pre> 43 <pre id="result"></pre>
44 </body> 44 </body>
45 </html> 45 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698