WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
47715
Web Inspector: move frontend settings to local storage
https://bugs.webkit.org/show_bug.cgi?id=47715
Summary
Web Inspector: move frontend settings to local storage
Pavel Podivilov
Reported
2010-10-15 02:25:14 PDT
We would like to enable access to local storage from Web Inspector. However, there are two problems: 1. privateBrowsingEnabled setting is true for web inspector pages (see WebInspectorClient.mm), this prevents web inspector from modifying local storage (see StorageAreaImpl::setItem). According to comment, this is done to keep inspector out of history. This can be solved by introducing new setting "excludeFromHistory" and then using it instead of "privateBrowsingEnabled" in WebInspectorClient. 2. chrome registers "chrome:" schema as no access (see RenderThread::EnsureWebKitInitialized), this prevents web inspector from accessing the local storage. We can add "allowLocalStorageAccess" setting like it's already done for "allowUniversalAccessFromFileURLs" (see Document::initSecurityContext). But I don't feel like it's a good solution. Any thoughts?
Attachments
Use localStorage to persist front-end settings.
(13.51 KB, patch)
2010-10-18 11:29 PDT
,
Pavel Podivilov
no flags
Details
Formatted Diff
Diff
Use shorter keys (no "application" prefix).
(13.54 KB, patch)
2010-10-22 08:14 PDT
,
Pavel Podivilov
pfeldman
: review-
Details
Formatted Diff
Diff
Comments addressed.
(14.14 KB, patch)
2010-10-25 05:02 PDT
,
Pavel Podivilov
pfeldman
: review+
pfeldman
: commit-queue-
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Jeremy Orlow
Comment 1
2010-10-15 02:35:31 PDT
Chris, do you have thoughts on #2? #1 sounds good to me.
Pavel Podivilov
Comment 2
2010-10-18 11:29:09 PDT
Created
attachment 71064
[details]
Use localStorage to persist front-end settings.
Jeremy Orlow
Comment 3
2010-10-19 02:42:41 PDT
I have 2 concerns: 1) LocalStorage is racy if you use it from 2 threads/processes. Are you OK with this? 2) It doesn't seem as though there's any code to migrate forward settings from the old system to the new. Is that OK?
Pavel Podivilov
Comment 4
2010-10-19 05:03:40 PDT
(In reply to
comment #3
)
> I have 2 concerns: > 1) LocalStorage is racy if you use it from 2 threads/processes. Are you OK with this?
That could be a problem, we should probably use Web SQL DB instead.
> 2) It doesn't seem as though there's any code to migrate forward settings from the old system to the new. Is that OK?
There's very few settings currently. So it's ok to forget the old settings.
Pavel Podivilov
Comment 5
2010-10-19 06:12:26 PDT
(In reply to
comment #4
)
> (In reply to
comment #3
) > > I have 2 concerns: > > 1) LocalStorage is racy if you use it from 2 threads/processes. Are you OK with this? > That could be a problem, we should probably use Web SQL DB instead.
We just need a dictionary for our settings, and SQL is much more than that. And since we aren't concerned about atomicity, localStorage should work pretty well for us.
Pavel Podivilov
Comment 6
2010-10-22 08:14:36 PDT
Created
attachment 71564
[details]
Use shorter keys (no "application" prefix).
Pavel Feldman
Comment 7
2010-10-22 08:44:24 PDT
Comment on
attachment 71564
[details]
Use shorter keys (no "application" prefix). View in context:
https://bugs.webkit.org/attachment.cgi?id=71564&action=review
> WebCore/inspector/front-end/Panel.js:37 > + WebInspector.applicationSettings.installSetting(this._sidebarWidthSettingName(), "application", undefined);
It should be WebInspector.settings.installApplicationSetting and WebInspector.settings.installProjectSetting
> WebCore/inspector/front-end/Settings.js:97 > + return key + "." + this._mainResourceURL;
You might want to ignore fragment here.
Pavel Podivilov
Comment 8
2010-10-25 05:02:09 PDT
Created
attachment 71734
[details]
Comments addressed.
Pavel Feldman
Comment 9
2010-10-26 13:47:59 PDT
Comment on
attachment 71734
[details]
Comments addressed. View in context:
https://bugs.webkit.org/attachment.cgi?id=71734&action=review
> WebCore/inspector/front-end/inspector.js:604 > + WebInspector.applicationSettings.dispatchEventToListeners("loaded");
Now that we load settings synchronously, we no longer need the listener. We should always expect them to be available. You can remove this notification and all the places that listen to settings load. Unless we go the DB way... What about reading from multiple threads / removing keys. fishd had some reservations on that front...
Pavel Podivilov
Comment 10
2010-10-27 01:52:51 PDT
Committed
r70622
: <
http://trac.webkit.org/changeset/70622
>
Pavel Podivilov
Comment 11
2010-10-27 01:54:40 PDT
(In reply to
comment #9
)
> (From update of
attachment 71734
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=71734&action=review
> > > WebCore/inspector/front-end/inspector.js:604 > > + WebInspector.applicationSettings.dispatchEventToListeners("loaded"); > > Now that we load settings synchronously, we no longer need the listener. We should always expect them to be available. You can remove this notification and all the places that listen to settings load. Unless we go the DB way...
done
> What about reading from multiple threads / removing keys. fishd had some reservations on that front...
Issue with reading from multiple threads is that localStorage.foo = localStorage.foo + 1 is not atomic, but that's ok for us.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug