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

Side by Side Diff: LayoutTests/compositing/overflow/overflow-scaled-descendant-overlapping.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 <html> 2 <html>
3 <!-- This checks the overlap test between render layers inside clipped 3 <!-- This checks the overlap test between render layers inside clipped
4 containers and other render layers when page scaling is used. See 4 containers and other render layers when page scaling is used. See
5 https://bugs.webkit.org/show_bug.cgi?id=76850 --> 5 https://bugs.webkit.org/show_bug.cgi?id=76850 -->
6 <script> 6 <script>
7 window.onload = function() { 7 window.onload = function() {
8 if (window.testRunner) 8 if (window.testRunner)
9 testRunner.dumpAsText(true); 9 testRunner.dumpAsTextWithPixelResults();
10 if (window.eventSender) 10 if (window.eventSender)
11 window.eventSender.setPageScaleFactor(0.5, 0, 0); 11 window.eventSender.setPageScaleFactor(0.5, 0, 0);
12 } 12 }
13 </script> 13 </script>
14 14
15 <style type="text/css"> 15 <style type="text/css">
16 .box { 16 .box {
17 width: 100px; 17 width: 100px;
18 height: 100px; 18 height: 100px;
19 } 19 }
(...skipping 20 matching lines...) Expand all
40 background-color: red; 40 background-color: red;
41 } 41 }
42 </style> 42 </style>
43 43
44 <div class="positioned test box"></div> 44 <div class="positioned test box"></div>
45 45
46 <div class="positioned clip box"> 46 <div class="positioned clip box">
47 <div class="transformed indicator box"></div> 47 <div class="transformed indicator box"></div>
48 </div> 48 </div>
49 </html> 49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698