Title: [200259] trunk/LayoutTests
- Revision
- 200259
- Author
- [email protected]
- Date
- 2016-04-29 13:11:12 -0700 (Fri, 29 Apr 2016)
Log Message
Fix a typo in r200255.
* resources/testharnessreport.js:
(self.testRunner.add_completion_callback):
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (200258 => 200259)
--- trunk/LayoutTests/ChangeLog 2016-04-29 20:05:07 UTC (rev 200258)
+++ trunk/LayoutTests/ChangeLog 2016-04-29 20:11:12 UTC (rev 200259)
@@ -1,3 +1,10 @@
+2016-04-29 Ryosuke Niwa <[email protected]>
+
+ Fix a typo in r200255.
+
+ * resources/testharnessreport.js:
+ (self.testRunner.add_completion_callback):
+
2016-04-29 Nan Wang <[email protected]>
AX: CharacterOffset not working correctly with composed characters and collapsed white spaces
Modified: trunk/LayoutTests/resources/testharnessreport.js (200258 => 200259)
--- trunk/LayoutTests/resources/testharnessreport.js 2016-04-29 20:05:07 UTC (rev 200258)
+++ trunk/LayoutTests/resources/testharnessreport.js 2016-04-29 20:11:12 UTC (rev 200259)
@@ -64,7 +64,7 @@
if (stackIndex > 0)
message = message.substr(0, stackIndex);
}
- resultStr += convertResult(tests[i].status) + " " + (tests[i].name != null ? tests[i].name || "") + " " + message + "\n";
+ resultStr += convertResult(tests[i].status) + " " + (tests[i].name != null ? tests[i].name : "") + " " + message + "\n";
}
results.innerText = resultStr;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes