Title: [201775] trunk/Websites/perf.webkit.org
Revision
201775
Author
[email protected]
Date
2016-06-07 16:40:28 -0700 (Tue, 07 Jun 2016)

Log Message

Build fix after r201739. attachShadow was throwing an exception on this component.

* public/v3/pages/analysis-category-toolbar.js:
(AnalysisCategoryToolbar):

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (201774 => 201775)


--- trunk/Websites/perf.webkit.org/ChangeLog	2016-06-07 22:45:53 UTC (rev 201774)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2016-06-07 23:40:28 UTC (rev 201775)
@@ -1,3 +1,10 @@
+2016-06-07  Ryosuke Niwa  <[email protected]>
+
+        Build fix after r201739. attachShadow was throwing an exception on this component.
+
+        * public/v3/pages/analysis-category-toolbar.js:
+        (AnalysisCategoryToolbar):
+
 2016-06-06  Ryosuke Niwa  <[email protected]>
 
         sync-buildbot.js should update the list of tests and platforms associated with a triggerable

Modified: trunk/Websites/perf.webkit.org/public/v3/pages/analysis-category-toolbar.js (201774 => 201775)


--- trunk/Websites/perf.webkit.org/public/v3/pages/analysis-category-toolbar.js	2016-06-07 22:45:53 UTC (rev 201774)
+++ trunk/Websites/perf.webkit.org/public/v3/pages/analysis-category-toolbar.js	2016-06-07 23:40:28 UTC (rev 201775)
@@ -2,7 +2,7 @@
 class AnalysisCategoryToolbar extends Toolbar {
     constructor()
     {
-        super();
+        super('analysis-category-toolbar');
         this._categories = AnalysisTask.categories();
         this._currentCategory = null;
         this._filter = null;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to