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

Side by Side Diff: LayoutTests/compositing/scrollbar-painting.html

Issue 24438004: Rename testRunner.dumpAsText(true) to testRunner.dumpAsTextWithPixelResults() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: more tests Created 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 .composited { 3 .composited {
4 -webkit-transform: translateZ(0); 4 -webkit-transform: translateZ(0);
5 } 5 }
6 6
7 .container { 7 .container {
8 width:100px; 8 width:100px;
9 height:100px; 9 height:100px;
10 overflow:scroll; 10 overflow:scroll;
(...skipping 10 matching lines...) Expand all
21 } 21 }
22 22
23 .contents { 23 .contents {
24 background-color: rgba(0, 127, 0, 0.5); 24 background-color: rgba(0, 127, 0, 0.5);
25 height: 100%; 25 height: 100%;
26 width: 100%; 26 width: 100%;
27 } 27 }
28 </style> 28 </style>
29 <script> 29 <script>
30 if (window.testRunner) 30 if (window.testRunner)
31 testRunner.dumpAsText(true); 31 testRunner.dumpAsTextWithPixelResults();
32 </script> 32 </script>
33 <!-- You should see a single 50% transparent green square --> 33 <!-- You should see a single 50% transparent green square -->
34 <div id="container" class="container composited"> 34 <div id="container" class="container composited">
35 <div class="contents"></div> 35 <div class="contents"></div>
36 </div> 36 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698