* public/v3/components/analysis-results-viewer.js:
(AnalysisResultsViewer.prototype._buildRowsForPointsAndTestGroups):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@198466
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
2016-03-18 Ryosuke Niwa <rniwa@webkit.org>
+ Build fix after r198464.
+
+ * public/v3/components/analysis-results-viewer.js:
+ (AnalysisResultsViewer.prototype._buildRowsForPointsAndTestGroups):
+
+2016-03-18 Ryosuke Niwa <rniwa@webkit.org>
+
Build fix after r198234.
* public/api/commits.php:
if (rowList[i] instanceof AnalysisResultsViewer.ExpandableRow)
continue;
- if (rowList[i].rootSet().equals(entry.succeedingRootSet())) {
+ if (entry.succeedingRootSet() && rowList[i].rootSet().equals(entry.succeedingRootSet())) {
rowList.splice(i, 0, newRow);
return;
}