Index: LayoutTests/fast/harness/results.html |
diff --git a/LayoutTests/fast/harness/results.html b/LayoutTests/fast/harness/results.html |
index 4684644ba92f16334e639e6d899d727327dbb77a..74b9baf2e2a16fecd8081ce28ac1c6f603bdc2eb 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) { |