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

Side by Side Diff: LayoutTests/css3/filters/filter-region.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, 3 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 2
3 <html lang="en"> 3 <html lang="en">
4 <head> 4 <head>
5 <style> 5 <style>
6 .box { 6 .box {
7 position: absolute; 7 position: absolute;
8 height: 50px; 8 height: 50px;
9 width: 100px; 9 width: 100px;
10 left: 20px; 10 left: 20px;
11 background-color: green; 11 background-color: green;
12 outline: 4px solid black; 12 outline: 4px solid black;
13 -webkit-filter: blur(0); 13 -webkit-filter: blur(0);
14 } 14 }
15 15
16 .indicator { 16 .indicator {
17 top: 50px; 17 top: 50px;
18 background-color: red; 18 background-color: red;
19 } 19 }
20 </style> 20 </style>
21 <script> 21 <script>
22 if (window.testRunner) 22 if (window.testRunner)
23 window.testRunner.dumpAsText(true); 23 window.testRunner.dumpAsTextWithPixelResults();
24 </script> 24 </script>
25 </head> 25 </head>
26 <body> 26 <body>
27 27
28 <!-- You should see two green rectangles with black outlines, and no red. --> 28 <!-- You should see two green rectangles with black outlines, and no red. -->
29 <div class="indicator box"></div> 29 <div class="indicator box"></div>
30 <div class="box"> 30 <div class="box">
31 <div class="box" style="top: 50px; left: 0"></div> 31 <div class="box" style="top: 50px; left: 0"></div>
32 </div> 32 </div>
33 33
34 </body> 34 </body>
35 </html> 35 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css3/filters/filter-empty-element-crash.html ('k') | LayoutTests/css3/filters/filter-repaint.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698