OLD | NEW |
1 // svg/dynamic-updates tests set enablePixelTesting=true, as we want to dump tex
t + pixel results | 1 // svg/dynamic-updates tests set enablePixelTesting=true, as we want to dump tex
t + pixel results |
2 if (self.testRunner) { | 2 if (self.testRunner) { |
3 if (self.enablePixelTesting) | 3 if (self.enablePixelTesting) |
4 testRunner.dumpAsTextWithPixelResults(); | 4 testRunner.dumpAsTextWithPixelResults(); |
5 else | 5 else |
6 testRunner.dumpAsText(); | 6 testRunner.dumpAsText(); |
7 } | 7 } |
8 | 8 |
9 var description, debug, successfullyParsed, errorMessage; | 9 var description, debug, successfullyParsed, errorMessage; |
10 | 10 |
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
685 testPassed = function(msg) { | 685 testPassed = function(msg) { |
686 workerPort.postMessage('PASS:' + msg); | 686 workerPort.postMessage('PASS:' + msg); |
687 } | 687 } |
688 finishJSTest = function() { | 688 finishJSTest = function() { |
689 workerPort.postMessage('DONE:'); | 689 workerPort.postMessage('DONE:'); |
690 } | 690 } |
691 debug = function(msg) { | 691 debug = function(msg) { |
692 workerPort.postMessage(msg); | 692 workerPort.postMessage(msg); |
693 } | 693 } |
694 } | 694 } |
OLD | NEW |