| Summary: | Web Inspector: Skip rendering frame records without children | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Matt Baker <mattbaker> | ||||||
| Component: | Web Inspector | Assignee: | Matt Baker <mattbaker> | ||||||
| Status: | RESOLVED FIXED | ||||||||
| Severity: | Normal | CC: | bburg, commit-queue, graouts, joepeck, mattbaker, nvasilyev, timothy, webkit-bug-importer | ||||||
| Priority: | P2 | Keywords: | InRadar | ||||||
| Version: | 528+ (Nightly build) | ||||||||
| Hardware: | All | ||||||||
| OS: | All | ||||||||
| Attachments: |
|
||||||||
|
Description
Matt Baker
2015-08-13 14:09:25 PDT
Created attachment 258934 [details]
[Patch] Proposed Fix
Comment on attachment 258934 [details] [Patch] Proposed Fix View in context: https://bugs.webkit.org/attachment.cgi?id=258934&action=review r=me > Source/WebInspectorUI/UserInterface/Models/RenderingFrameTimelineRecord.js:73 > + if (this._frameIndex >= 0) > + return; > + this._frameIndex = WebInspector.RenderingFrameTimelineRecord._nextFrameIndex++; If we expect this to be set only once, we can: console.assert(this._frameIndex === -1); Created attachment 258937 [details]
[Patch] Proposed Fix
Comment on attachment 258937 [details] [Patch] Proposed Fix Clearing flags on attachment: 258937 Committed r188408: <http://trac.webkit.org/changeset/188408> All reviewed patches have been landed. Closing bug. |