Title: [158006] trunk/Websites/test-results
- Revision
- 158006
- Author
- [email protected]
- Date
- 2013-10-25 06:20:47 -0700 (Fri, 25 Oct 2013)
Log Message
One more build fix. Put each latest revision information in an actual td.
* public/index.html:
Modified Paths
Diff
Modified: trunk/Websites/test-results/ChangeLog (158005 => 158006)
--- trunk/Websites/test-results/ChangeLog 2013-10-25 12:43:42 UTC (rev 158005)
+++ trunk/Websites/test-results/ChangeLog 2013-10-25 13:20:47 UTC (rev 158006)
@@ -1,5 +1,11 @@
2013-10-25 Ryosuke Niwa <[email protected]>
+ One more build fix. Put each latest revision information in an actual td.
+
+ * public/index.html:
+
+2013-10-25 Ryosuke Niwa <[email protected]>
+
Yet another set of build fixes.
1. Manually strip / from revisions JSON if there is any.
Modified: trunk/Websites/test-results/public/index.html (158005 => 158006)
--- trunk/Websites/test-results/public/index.html 2013-10-25 12:43:42 UTC (rev 158005)
+++ trunk/Websites/test-results/public/index.html 2013-10-25 13:20:47 UTC (rev 158006)
@@ -280,9 +280,9 @@
for (var i = 0; i < repositories.length; i++) {
var revisionInfo = build.formattedRevision(repositories[i].id);
if (revisionInfo.url)
- formattedRevisionCells.push(element('a', {'href': revisionInfo.url}, [revisionInfo.label]));
+ formattedRevisionCells.push(element('td', [element('a', {'href': revisionInfo.url}, [revisionInfo.label])]));
else
- formattedRevisionCells.push(revisionInfo.label);
+ formattedRevisionCells.push(element('td', [revisionInfo.label]));
}
}
@@ -547,4 +547,4 @@
</script>
</body>
-</html>
\ No newline at end of file
+</html>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes