[Webkit-unassigned] [Bug 48927] Some links do not work on WebKit GTK+, and other links are displayed on top of the failed links.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Feb 16 10:20:47 PST 2011


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





--- Comment #10 from Martin Robinson <mrobinson at webkit.org>  2011-02-16 10:20:47 PST ---
(In reply to comment #9)
> I set the minimum font size in the config file in uzbl to 1 and the font size to 10 and the blue links are still displayed on top of the menu bar like before.  The same display problem is now in Firefox 3.6 and SeaMonkey 2.0, although Arora running Qt WebKit 2.0 still displays the page as intended with the pull down menu working.

Are you building 1.3.10 from source? Can you try applying this patch and then running the GtkLauncher? After doing that and loading http://www.nba.com, the links show in the correct place.

diff --git a/Tools/GtkLauncher/main.c b/Tools/GtkLauncher/main.c
index ad666e2..d9f49aa 100644
--- a/Tools/GtkLauncher/main.c
+++ b/Tools/GtkLauncher/main.c
@@ -200,6 +200,10 @@ static GtkWidget* createWindow(WebKitWebView** outWebView)
     gtk_widget_set_name(window, "GtkLauncher");

     webView = WEBKIT_WEB_VIEW(webkit_web_view_new());
+    WebKitWebSettings* settings = webkit_web_view_get_settings(webView);
+    g_object_set(settings, "minimum-font-size", 1, NULL);
+    webkit_web_view_set_settings(webView, settings);
+
     uriEntry = gtk_entry_new();

     vbox = gtk_vbox_new(FALSE, 0);

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