Bug 140610 - [GTK] Add API to change the WebKitWebView background color
Summary: [GTK] Add API to change the WebKitWebView background color
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKitGTK (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords: Gtk
Depends on:
Blocks:
 
Reported: 2015-01-19 01:52 PST by Carlos Garcia Campos
Modified: 2015-01-20 00:25 PST (History)
4 users (show)

See Also:


Attachments
Patch (14.54 KB, patch)
2015-01-19 02:10 PST, Carlos Garcia Campos
gustavo: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Carlos Garcia Campos 2015-01-19 01:52:22 PST
Add webkit_web_view_get_background_color and webkit_web_view_set_background_color
Comment 1 Carlos Garcia Campos 2015-01-19 02:10:20 PST
Created attachment 244887 [details]
Patch

I've tried to check the actual rendering in the unit tests using different approaches but none of the actually worked. We can't use snapshots, because the background is rendered in the UI process by the backing store, and snapshots are rendered in an image surface without using the backing store. I also tried to use a GtkOffscreenWindow, but it uses xlib surfaces than when rendered into an image surface can't be compared at pixel level with an image surface manually filled. So, in the end I added a --bg-color command line option to MiniBrowser that can be used to manually tested. You can pass any value that can be parsed by gdk_rgba_parse().
Comment 2 Gustavo Noronha (kov) 2015-01-19 14:58:15 PST
Comment on attachment 244887 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=244887&action=review

> Source/WebKit2/UIProcess/WebPageProxy.cpp:339
> +#if PLATFORM(GTK)
> +    , m_backgroundColor(Color::white)
> +#endif

I read your description of its behaviour on the list:

  - WebPageProxy::setDrawsBackground(): This ends up calling FrameView::setTransparent() for every frame. It seems that when this is set to true the document or base background color is ignored.

There is a base background color already, then, can we use that instead of adding something else? Otherwise looks good!
Comment 3 Carlos Garcia Campos 2015-01-20 00:24:48 PST
(In reply to comment #2)
> Comment on attachment 244887 [details]
> Patch
> 
> View in context:
> https://bugs.webkit.org/attachment.cgi?id=244887&action=review
> 
> > Source/WebKit2/UIProcess/WebPageProxy.cpp:339
> > +#if PLATFORM(GTK)
> > +    , m_backgroundColor(Color::white)
> > +#endif
> 
> I read your description of its behaviour on the list:
> 
>   - WebPageProxy::setDrawsBackground(): This ends up calling
> FrameView::setTransparent() for every frame. It seems that when this is set
> to true the document or base background color is ignored.
> 
> There is a base background color already, then, can we use that instead of
> adding something else? Otherwise looks good!

Not sure I understand what you mean. When we set drawsBrackground to False, WebCore doesn't render any background (unless the document itself specifies a background in the HTML or CSS). The default base color in FrameView is white, so when the white color is set by the user, we simply set the drawsBackground to True, and we don't need to fill our backing store. We need to initialize the WebPageProxy bg color member to white because we are comparing that value when a new color is set. If white color is set the first time, we simply do nothing, because that's already the default.
Comment 4 Carlos Garcia Campos 2015-01-20 00:25:59 PST
Committed r178699: <http://trac.webkit.org/changeset/178699>