Title: [258951] trunk/Tools
Revision
258951
Author
[email protected]
Date
2020-03-24 15:52:04 -0700 (Tue, 24 Mar 2020)

Log Message

results.webkit.org: Filter suite results by expectation by default
https://bugs.webkit.org/show_bug.cgi?id=209500

Rubber-stamped by Aakash Jain.

* resultsdbpy/resultsdbpy/view/static/js/timeline.js: Allow the Legend constructor
to set a willFilterExpected default.
* resultsdbpy/resultsdbpy/view/templates/suite_results.html:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (258950 => 258951)


--- trunk/Tools/ChangeLog	2020-03-24 22:42:48 UTC (rev 258950)
+++ trunk/Tools/ChangeLog	2020-03-24 22:52:04 UTC (rev 258951)
@@ -1,3 +1,14 @@
+2020-03-24  Jonathan Bedard  <[email protected]>
+
+        results.webkit.org: Filter suite results by expectation by default
+        https://bugs.webkit.org/show_bug.cgi?id=209500
+
+        Rubber-stamped by Aakash Jain.
+
+        * resultsdbpy/resultsdbpy/view/static/js/timeline.js: Allow the Legend constructor
+        to set a willFilterExpected default.
+        * resultsdbpy/resultsdbpy/view/templates/suite_results.html:
+
 2020-03-24  Per Arne Vollan  <[email protected]>
 
         [Cocoa] Fix launch time regression with CF prefs direct mode enabled

Modified: trunk/Tools/resultsdbpy/resultsdbpy/view/static/js/timeline.js (258950 => 258951)


--- trunk/Tools/resultsdbpy/resultsdbpy/view/static/js/timeline.js	2020-03-24 22:42:48 UTC (rev 258950)
+++ trunk/Tools/resultsdbpy/resultsdbpy/view/static/js/timeline.js	2020-03-24 22:52:04 UTC (rev 258951)
@@ -830,7 +830,8 @@
     return `<div class="label" style="font-size: var(--smallSize)" ref="${ref}"></div>`;
 } 
 
-function Legend(callback=null, plural=false) {
+function Legend(callback=null, plural=false, defaultWillFilterExpected=false) {
+    willFilterExpected = defaultWillFilterExpected;
     InvestigateDrawer.willFilterExpected = willFilterExpected;
     let updateLabelEvents = new EventStream();
     const legendDetails = {

Modified: trunk/Tools/resultsdbpy/resultsdbpy/view/templates/suite_results.html (258950 => 258951)


--- trunk/Tools/resultsdbpy/resultsdbpy/view/templates/suite_results.html	2020-03-24 22:42:48 UTC (rev 258950)
+++ trunk/Tools/resultsdbpy/resultsdbpy/view/templates/suite_results.html	2020-03-24 22:52:04 UTC (rev 258951)
@@ -175,7 +175,7 @@
         for (let suite in view.children) {
             view.children[suite].update();
         }
-    }, true),
+    }, true, true),
     LimitSlider(() => {view.reload()}),
     BranchSelector(() => {
         CommitBank.reload();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to