Bug 38522 - Web Inspector: restore main and sidebar scroller positions when switching between panels.
Summary: Web Inspector: restore main and sidebar scroller positions when switching bet...
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Web Inspector (Deprecated) (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Pavel Feldman
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-05-04 08:22 PDT by Pavel Feldman
Modified: 2010-05-04 11:50 PDT (History)
8 users (show)

See Also:


Attachments
[PATCH] Proposed change. (4.64 KB, patch)
2010-05-04 08:28 PDT, Pavel Feldman
timothy: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Pavel Feldman 2010-05-04 08:22:47 PDT
We would still need to store scroll top for views once this lands.
Comment 1 Pavel Feldman 2010-05-04 08:28:32 PDT
Created attachment 55019 [details]
[PATCH] Proposed change.
Comment 2 Timothy Hatcher 2010-05-04 08:32:08 PDT
Comment on attachment 55019 [details]
[PATCH] Proposed change.

WebCore/inspector/front-end/Panel.js:403
 +              container.__scrollTop = container.scrollTop;
I think _storedScrollTop would be clearer than __scrollTop.

Nice solution!
Comment 3 Pavel Feldman 2010-05-04 11:50:55 PDT
Landed with comments addressed. Reason I used __ was that it was not a private field, but rather a custom property on a node wrapper (i.e. accessible from other parts of the frontend). I thought we were using __ for that, but I now realize that was the inspected page side where we used __ before.

Committing to http://svn.webkit.org/repository/webkit/trunk ...
	M	WebCore/ChangeLog
	M	WebCore/inspector/front-end/ElementsPanel.js
	M	WebCore/inspector/front-end/Panel.js
	M	WebCore/inspector/front-end/ResourcesPanel.js
	M	WebCore/inspector/front-end/ScriptsPanel.js
Committed r58768