<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Summary page enhancement."
   href="https://bugs.webkit.org/show_bug.cgi?id=157339#c3">Comment # 3</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Summary page enhancement."
   href="https://bugs.webkit.org/show_bug.cgi?id=157339">bug 157339</a>
              from <span class="vcard"><a class="email" href="mailto:dewei_zhu&#64;apple.com" title="dewei_zhu&#64;apple.com">dewei_zhu&#64;apple.com</a>
</span></b>
        <pre>Comment on <span class=""><a href="attachment.cgi?id=278069&amp;action=diff" name="attach_278069" title="Patch">attachment 278069</a> <a href="attachment.cgi?id=278069&amp;action=edit" title="Patch">[details]</a></span>
Patch

View in context: <a href="https://bugs.webkit.org/attachment.cgi?id=278069&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=278069&amp;action=review</a>

<span class="quote">&gt;&gt; Websites/perf.webkit.org/public/v3/components/ratio-bar-graph.js:49
&gt;&gt; +        if (this._ratio) {
&gt; 
&gt; You should check that this._ratio is not NaN here.</span >

I don't think it will satisfy the condition when this._ratio equals NaN.

<span class="quote">&gt;&gt; Websites/perf.webkit.org/public/v3/pages/summary-page.js:187
&gt;&gt; +        this._warnings = new Map;
&gt; 
&gt; We don't really need to use a Map here since we're only ever going to use string keys.
&gt; Also, I'd prefer initializing this to `null` in the case there are no warnings.</span >

I agree that using Map is unnecessary. But if we initialize warnings to `null` we need to do null-check every time we use it. I think using {} will simplify the code.

<span class="quote">&gt;&gt; Websites/perf.webkit.org/public/v3/pages/summary-page.js:197
&gt;&gt; +                if (excludedConfigurations &amp;&amp; excludedConfigurations.hasOwnProperty(platform.id()) &amp;&amp; excludedConfigurations[platform.id()].includes(+metric.id()))
&gt; 
&gt; Just do &quot;platform.id() in excludedConfigurations&quot; instead.
&gt; Also, there's no need to convert metric.id() to a number.</span >

[1].includes(&quot;1&quot;) returns false. And metric.id() returns a string instead of a number. So I think the conversion is necessary.

<span class="quote">&gt;&gt; Websites/perf.webkit.org/public/v3/pages/summary-page.js:266
&gt;&gt; +                self._warnings.set('Missing baseline', missingBaselinePlatforms);
&gt; 
&gt; I'd prefer to have a pattern like:
&gt; if (!(y in x))
&gt;   x[y] = ~;
&gt; x[y].add(~).
&gt; since that's what we do elsewhere in the perf dashboard.
&gt; 
&gt; Now, there isn't really much reason to be using a Set here
&gt; because we're not gonna have same platforms appearing multiple times
&gt; (we should probably verify that somewhere)
&gt; so I'd suggest using an array instead to make the code to construct the string simpler.
&gt; 
&gt; Note that Set and Map are orders of magnitudes (2x to 200x) slower on almost all browsers.</span >

I can see same platform occurs multiple times here. Because pair of &lt;platform, metric&gt; is unique.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>