[Webkit-unassigned] [Bug 44020] [EFL] Enable localStorage of HTML5 for WebKit EFL
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Aug 16 00:11:14 PDT 2010
https://bugs.webkit.org/show_bug.cgi?id=44020
--- Comment #6 from Gyuyoung Kim <gyuyoung.kim at samsung.com> 2010-08-16 00:11:13 PST ---
(In reply to comment #2)
> > BTW, it seems we need to set the initial settings values dynamically.
>
> what do you mean?
I mean that default settings below is hardcoded.
static Ewk_View_Private_Data* _ewk_view_priv_new(Ewk_View_Smart_Data* sd) {
...
priv->page_settings->setLoadsImagesAutomatically(true);
priv->page_settings->setDefaultFixedFontSize(12);
priv->page_settings->setDefaultFontSize(16);
priv->page_settings->setSerifFontFamily("serif");
priv->page_settings->setFixedFontFamily("monotype");
priv->page_settings->setSansSerifFontFamily("sans");
priv->page_settings->setStandardFontFamily("sans");
priv->page_settings->setJavaScriptEnabled(true);
priv->page_settings->setPluginsEnabled(true);
priv->page_settings->setLocalStorageEnabled(true);
...
}
It seems to me the default values need to be changed by setting file or user and so on. How do you think about it ?
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list