[Webkit-unassigned] [Bug 36640] Flash transparency + Webkitgtk transparency issue

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Sep 21 22:59:47 PDT 2010


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


kerpz at yahoo.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|WORKSFORME                  |




--- Comment #3 from kerpz at yahoo.com  2010-09-21 22:59:47 PST ---
The crash still occurs, im using trunk 67940

How to reproduce the crash:

Create a simple application with compositing enable, for alpha blending.
Plugin: adobe flash player 10 for linux


//////////////////// snippet start here //////////////////////////

....

    GdkScreen *screen = gtk_widget_get_screen(main_window);

    GdkColormap *rgba = gdk_screen_get_rgba_colormap(screen);
    if (rgba && gdk_screen_is_composited (screen))
    {
        gtk_widget_set_default_colormap(rgba);
        gtk_widget_set_colormap(GTK_WIDGET(main_window), rgba);
    }

    webkit_web_view_set_transparent(WEBKIT_WEB_VIEW(web_view), TRUE);

    // fullscreen
    gint width = gdk_screen_get_width(screen);
    gint height = gdk_screen_get_height(screen);
    gtk_window_set_default_size(GTK_WINDOW(main_window), width, height);

    gchar* uri = (gchar*) (argc > 1 ? argv[1] : "http://www.kirupa.com/developer/mx/transparency.htm");
    webkit_web_view_load_uri (web_view, uri);

....

//////////////////// snippet end here //////////////////////////

Note: It will load normal pages without flash content.


Regards,
Philip B.

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