Lines Matching refs:testName
696 TestSuite.prototype.goToTestByName = function(testName)
698 var match = testName.match(/^(?:(html4|xhtml1)\/)?([\w-_]+)(\.xht|\.htm)?/);
893 TestSuite.prototype.pathForTest = function(testName)
898 return prefix + '/' + testName + suffix;
901 TestSuite.prototype.urlForTest = function(testName)
903 return kTestSuiteHome + this.pathForTest(testName);
908 TestSuite.prototype.recordResult = function(testName, resolution, comment)
910 if (!testName)
914 this.appendResultToOutput(this.formatInfo, testName, resolution, comment);
920 this.storeTestResult(testName, this.format, resolution, comment, navigator.userAgent);
929 this.markTestCompleted(testName, htmlStatus, xhtmlStatus);
946 TestSuite.prototype.appendResultToOutput = function(formatData, testName, resolution, comment)
950 var result = formatData.path + '/' + testName + formatData.suffix + '\t' + resolution;
1028 result += 'testname\tresult\n';
1033 TestSuite.prototype.createExportLine = function(formatData, testName, resolution, comment)
1035 var result = formatData.path + '/' + testName + '\t' + resolution;
1063 testname<tab>result
1071 The "testname<tab>result" line is ignored.