Bug 174468

Summary: Web Inspector: overlay page highlight doesn't disappear when a page is constantly updating
Product: WebKit Reporter: Devin Rousso <hi>
Component: Web InspectorAssignee: Devin Rousso <hi>
Status: RESOLVED FIXED    
Severity: Normal CC: bburg, commit-queue, inspector-bugzilla-changes, joepeck, simon.fraser, thorton
Priority: P2    
Version: WebKit Nightly Build   
Hardware: All   
OS: All   
Attachments:
Description Flags
Patch none

Description Devin Rousso 2017-07-13 11:16:36 PDT
* Reproduction:

var log = document.body.appendChild(document.createElement("div"));
function frame(timestamp) {
    log.textContent = Date.now();
    window.requestAnimationFrame(frame);
}
window.requestAnimationFrame(frame);


* Steps to reproduce:
1. Open elements tab on "about:blank"
2. Paste above code into console
3. Highlight <div>
4. Move mouse off of DOM tree
=> Page is still highlighted
Comment 1 Devin Rousso 2017-07-13 11:37:15 PDT
Created attachment 315363 [details]
Patch
Comment 2 BJ Burg 2017-07-13 12:07:51 PDT
Comment on attachment 315363 [details]
Patch

Nice catch!
Comment 3 WebKit Commit Bot 2017-07-17 19:00:53 PDT
Comment on attachment 315363 [details]
Patch

Clearing flags on attachment: 315363

Committed r219596: <http://trac.webkit.org/changeset/219596>
Comment 4 WebKit Commit Bot 2017-07-17 19:00:54 PDT
All reviewed patches have been landed.  Closing bug.