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

Side by Side Diff: LayoutTests/css3/filters/custom/effect-custom-parameters.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 <html> 2 <html>
3 <head> 3 <head>
4 <title>Testing that the custom filter receives the correct number parame ters.</title> 4 <title>Testing that the custom filter receives the correct number parame ters.</title>
5 <script> 5 <script>
6 if (window.testRunner) { 6 if (window.testRunner) {
7 window.testRunner.overridePreference("WebKitCSSCustomFilterEnabl ed", "1"); 7 window.testRunner.overridePreference("WebKitCSSCustomFilterEnabl ed", "1");
8 window.testRunner.overridePreference("WebKitWebGLEnabled", "1"); 8 window.testRunner.overridePreference("WebKitWebGLEnabled", "1");
9 window.testRunner.dumpAsText(true); 9 window.testRunner.dumpAsTextWithPixelResults();
10 window.testRunner.waitUntilDone(); 10 window.testRunner.waitUntilDone();
11 } 11 }
12 12
13 function runTest() 13 function runTest()
14 { 14 {
15 // We need to run the tests after the downloading succeeded. 15 // We need to run the tests after the downloading succeeded.
16 if (window.testRunner) 16 if (window.testRunner)
17 window.testRunner.notifyDone(); 17 window.testRunner.notifyDone();
18 } 18 }
19 </script> 19 </script>
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 <img class="filterA" src="../resources/reference.png" /> 53 <img class="filterA" src="../resources/reference.png" />
54 <img class="filterB" src="../resources/reference.png" /> 54 <img class="filterB" src="../resources/reference.png" />
55 <img class="filterC" src="../resources/reference.png" /> 55 <img class="filterC" src="../resources/reference.png" />
56 <img class="filterD" src="../resources/reference.png" /> 56 <img class="filterD" src="../resources/reference.png" />
57 <!-- 57 <!--
58 Testing that simple custom filters send the correct parameters of ty pe number. You should see 4 blocks of colored bars with different rotation, pers pective, offset 58 Testing that simple custom filters send the correct parameters of ty pe number. You should see 4 blocks of colored bars with different rotation, pers pective, offset
59 and color effects applied. 59 and color effects applied.
60 --> 60 -->
61 </body> 61 </body>
62 </html> 62 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698