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

Side by Side Diff: LayoutTests/css3/filters/filtered-inline.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> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 body { 6 body {
7 font-size: 18pt; 7 font-size: 18pt;
8 } 8 }
9 9
10 .filtered { 10 .filtered {
11 -webkit-filter: blur(10px); 11 -webkit-filter: blur(10px);
12 } 12 }
13 13
14 div { 14 div {
15 display: inline-block; 15 display: inline-block;
16 width: 20px; 16 width: 20px;
17 height: 1em; 17 height: 1em;
18 background: green; 18 background: green;
19 } 19 }
20 </style> 20 </style>
21 <script> 21 <script>
22 if (window.testRunner) 22 if (window.testRunner)
23 testRunner.dumpAsText(true); 23 testRunner.dumpAsTextWithPixelResults();
24 </script> 24 </script>
25 </head> 25 </head>
26 <body> 26 <body>
27 <div></div><div></div><span class="filtered"><div></div><div></div></span><d iv></div><div> 27 <div></div><div></div><span class="filtered"><div></div><div></div></span><d iv></div><div>
28 </body> 28 </body>
29 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698