Title: [198466] trunk/Websites/perf.webkit.org
Revision
198466
Author
[email protected]
Date
2016-03-18 21:06:48 -0700 (Fri, 18 Mar 2016)

Log Message

Build fix after r198464.

* public/v3/components/analysis-results-viewer.js:
(AnalysisResultsViewer.prototype._buildRowsForPointsAndTestGroups):

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (198465 => 198466)


--- trunk/Websites/perf.webkit.org/ChangeLog	2016-03-19 03:33:11 UTC (rev 198465)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2016-03-19 04:06:48 UTC (rev 198466)
@@ -1,5 +1,12 @@
 2016-03-18  Ryosuke Niwa  <[email protected]>
 
+        Build fix after r198464.
+
+        * public/v3/components/analysis-results-viewer.js:
+        (AnalysisResultsViewer.prototype._buildRowsForPointsAndTestGroups):
+
+2016-03-18  Ryosuke Niwa  <[email protected]>
+
         Build fix after r198234.
 
         * public/api/commits.php:

Modified: trunk/Websites/perf.webkit.org/public/v3/components/analysis-results-viewer.js (198465 => 198466)


--- trunk/Websites/perf.webkit.org/public/v3/components/analysis-results-viewer.js	2016-03-19 03:33:11 UTC (rev 198465)
+++ trunk/Websites/perf.webkit.org/public/v3/components/analysis-results-viewer.js	2016-03-19 04:06:48 UTC (rev 198466)
@@ -198,7 +198,7 @@
                 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;
                 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to