Summary: | Web Inspector: support replaying to time-indexed outputs | ||||||
---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Brian Burg <burg> | ||||
Component: | Web Inspector | Assignee: | Nobody <webkit-unassigned> | ||||
Status: | RESOLVED LATER | ||||||
Severity: | Normal | CC: | graouts, inspector-bugzilla-changes, syoichi, webkit-bug-importer | ||||
Priority: | P2 | Keywords: | InRadar | ||||
Version: | 528+ (Nightly build) | ||||||
Hardware: | All | ||||||
OS: | All | ||||||
Bug Depends on: | 137079, 137083, 137162 | ||||||
Bug Blocks: | 136292 | ||||||
Attachments: |
|
Description
Brian Burg
2014-09-24 15:48:16 PDT
(In reply to comment #2) > <rdar://problem/18447455> Double-imported :( Created attachment 238620 [details]
WIP
Comment on attachment 238620 [details] WIP View in context: https://bugs.webkit.org/attachment.cgi?id=238620&action=review > Source/WebInspectorUI/UserInterface/Controllers/ReplayManager.js:482 > + // Disable the breakpoints that are unrelated to this command. > + for (var breakpoint of WebInspector.debuggerManager.breakpoints) { > + breakpointStateMap.set(breakpoint, breakpoint.disabled); > + breakpoint.disabled = true; > + } This likely fires a bunch of events that are pointless and confuse the UI. Should we suppress them? > Source/WebInspectorUI/UserInterface/Controllers/ReplayManager.js:538 > + manager.playbackSpeed = WebInspector.ReplayManager.PlaybackSpeed.RealTime; > + for (var [breakpoint, wasDisabled] of breakpointStateMap) > + breakpoint.disabled = wasDisabled; What happens if the user toggled one since the state was stored? Closing web replay-related bugs until we resume working on the feature again. |