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

Side by Side Diff: LayoutTests/css3/filters/effect-reference-repaint-gaussianblur-xonly.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 <head> 3 <head>
4 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> 4 <script src="../../fast/repaint/resources/text-based-repaint.js"></script>
5 <script> 5 <script>
6 if (window.testRunner) { 6 if (window.testRunner) {
7 testRunner.dumpAsText(false); 7 testRunner.dumpAsText();
8 testRunner.display(); 8 testRunner.display();
9 } 9 }
10 10
11 function repaintTest() 11 function repaintTest()
12 { 12 {
13 var things = document.getElementsByClassName("before"); 13 var things = document.getElementsByClassName("before");
14 while (things.length) 14 while (things.length)
15 things[0].classList.remove("before"); 15 things[0].classList.remove("before");
16 } 16 }
17 </script> 17 </script>
(...skipping 15 matching lines...) Expand all
33 <div class="box before"></div> 33 <div class="box before"></div>
34 <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1"> 34 <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1">
35 <defs> 35 <defs>
36 <filter id="blur"> 36 <filter id="blur">
37 <feGaussianBlur stdDeviation="20 0"/> 37 <feGaussianBlur stdDeviation="20 0"/>
38 </filter> 38 </filter>
39 </defs> 39 </defs>
40 </svg> 40 </svg>
41 </body> 41 </body>
42 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698