| Summary: | REGRESSION(r172094): timeline views are blank after reloading in some situations | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Brian Burg <burg> | ||||
| Component: | Web Inspector | Assignee: | Brian Burg <burg> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | commit-queue, graouts, joepeck, timothy, webkit-bug-importer | ||||
| Priority: | P2 | Keywords: | InRadar | ||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | All | ||||||
| OS: | All | ||||||
| Attachments: |
|
||||||
|
Description
Brian Burg
2014-08-07 21:05:44 PDT
(1) is easy enough to fix. For me, (2) manifests as the overview being shown for timeline 1 when timeline 2 is recording, and clicking on the timeline tree elements shows timelines for timeline 1 instead of 2. So it seems that we are showing timeline 1 by mistake, possibly right after showing the intended timeline. Without a debugger I can't be sure, so I'll try adding some logging. Created attachment 236270 [details]
Patch
The patch fixes this issue, at least on my machine. Joe, let me know if you still run into the same problem. Comment on attachment 236270 [details] Patch Clearing flags on attachment: 236270 Committed r172337: <http://trac.webkit.org/changeset/172337> All reviewed patches have been landed. Closing bug. This works better, but I'm seeing an uncaught exception and some other issues. I'll file bugs.
file:///Users/pecoraro/Build/Release/WebInspectorUI.framework/Resources/Protocol/InspectorBackend.js:173:30: CONSOLE ERROR Uncaught exception in inspector page while dispatching callback for command Page.getResourceTree: TypeError: undefined is not a function (evaluating 'candidateObjectCookie.every(function valuesMatchForKey(key) {
return candidateObjectCookie[key] === cookie[key];
})')
file:///Users/pecoraro/Build/Release/WebInspectorUI.framework/Resources/Views/NavigationSidebarPanel.js:702:77: CONSOLE ERROR TypeError: undefined is not a function (evaluating 'candidateObjectCookie.every(function valuesMatchForKey(key) {
return candidateObjectCookie[key] === cookie[key];
})')
I'm guessing this issue was just a typo:
- return candidateCookieKeys.length && candidateObjectCookie.every(function valuesMatchForKey(key) {
+ return candidateCookieKeys.length && candidateCookieKeys.every(function valuesMatchForKey(key) {
|