[Webkit-unassigned] [Bug 28823] [GTK] New events (pageshow and pagehide) tests failing

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Aug 29 22:08:45 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=28823





--- Comment #3 from Jan Alonzo <jmalonzo at gmail.com>  2009-08-29 22:08:45 PDT ---
(In reply to comment #2)
> (From update of attachment 38782 [details])
> > +    /**
> > +     * WebKitWebSettings:enable-page-cache
> > +     *
> > +     * Whether to enable the page cache
> > +     *
> > +     * Since 1.1.14
> > +     */
> > +    g_object_class_install_property(gobject_class,
> > +                                    PROP_ENABLE_PAGE_CACHE,
> > +                                    g_param_spec_boolean("enable-page-cache",
> > +                                                         _("Enable Page Cache"),
> > +                                                         _("Whether to enable the page cache"),
> > +                                                         TRUE,
> > +                                                         flags));
> 
> If this is causing trouble, why would we enable this by default? Better to have
> a comment saying that we plan to enable this by default in the future?

Ok. I thought it's just causing trouble in the DRT but ok.

> > -                         g_str_equal(g_utf8_strdown(strValue, -1), "true"),
> > +                         g_str_equal(g_utf8_strdown(strValue, -1), "true")
> > +                         || g_str_equal(g_utf8_strdown(strValue, -1), "1"),
> >                           NULL);
> >          } else if (G_VALUE_HOLDS_INT(&propValue)) {
> >              std::string str(strValue);
> 
> Weird. Why do we need this now?

1 still evaluates to True and one of the affected test is using 1 for "true".

-- 
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