[Webkit-unassigned] [Bug 149742] Regression: Web Inspector: Sometimes in Elements panel two elements showed as selected at the same time

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Feb 8 21:56:49 PST 2016


https://bugs.webkit.org/show_bug.cgi?id=149742

--- Comment #8 from Joseph Pecoraro <joepeck at webkit.org> ---
* SUMMARY
Regression produced by r187496.

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

* STEPS TO REPRODUCE
1. Inspect a <p> on the test page
2. Click the other <p> tags
  => multiple selections left over

* NOTES
- The TreeOutline loses the selectedTreeElement, but the inner selected TreeElement still sees itself as selected...

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160209/bc067149/attachment-0001.html>


More information about the webkit-unassigned mailing list