| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |