| Index: LayoutTests/fast/harness/results.html
|
| diff --git a/LayoutTests/fast/harness/results.html b/LayoutTests/fast/harness/results.html
|
| index 4976ed0eddaa7d30f64182b38ca1358d211809bf..ba3be7f806a127949e82dc8db360b124564df61d 100644
|
| --- a/LayoutTests/fast/harness/results.html
|
| +++ b/LayoutTests/fast/harness/results.html
|
| @@ -576,7 +576,11 @@ function tableRow(testObject)
|
| var actual = testObject.actual;
|
| if (actual.indexOf('TEXT') != -1) {
|
| globalState().hasTextFailures = true;
|
| - row += textResultLinks(testPrefix);
|
| + if (testObject.is_testharness_test) {
|
| + row += resultLink(testPrefix, '-actual.txt', 'actual');
|
| + } else {
|
| + row += textResultLinks(testPrefix);
|
| + }
|
| }
|
|
|
| if (actual.indexOf('AUDIO') != -1) {
|
|
|