<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Regression: Web Inspector: Sometimes in Elements panel two elements showed as selected at the same time"
   href="https://bugs.webkit.org/show_bug.cgi?id=149742#c8">Comment # 8</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Regression: Web Inspector: Sometimes in Elements panel two elements showed as selected at the same time"
   href="https://bugs.webkit.org/show_bug.cgi?id=149742">bug 149742</a>
              from <span class="vcard"><a class="email" href="mailto:joepeck&#64;webkit.org" title="Joseph Pecoraro &lt;joepeck&#64;webkit.org&gt;"> <span class="fn">Joseph Pecoraro</span></a>
</span></b>
        <pre>* SUMMARY
Regression produced by r187496.

* TEST
&lt;body&gt;
&lt;div&gt;
    &lt;p&gt;Test&lt;/p&gt;
    &lt;p&gt;Test&lt;/p&gt;
    &lt;p&gt;Test&lt;/p&gt;
    &lt;p&gt;Test&lt;/p&gt;
    &lt;button id=&quot;start&quot;&gt;Start&lt;/button&gt;
    &lt;button id=&quot;stop&quot;&gt;Stop&lt;/button&gt;
&lt;/div&gt;
&lt;script&gt;
setInterval(function() {
    var elem = document.body.appendChild(document.createElement(&quot;div&quot;));
    elem.style.cssText = &quot;width: 100px; height: 100px; background: blue&quot;;
    setTimeout(function() {
        document.body.removeChild(elem);
    }, 0);
}, 500);
&lt;/script&gt;

* STEPS TO REPRODUCE
1. Inspect a &lt;p&gt; on the test page
2. Click the other &lt;p&gt; tags
  =&gt; multiple selections left over

* NOTES
- The TreeOutline loses the selectedTreeElement, but the inner selected TreeElement still sees itself as selected...</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>