[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-10851-g50815da

philn at webkit.org philn at webkit.org
Wed Dec 22 18:28:34 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit ff73c8f0275896b5762ab8c5367444f0fd1b46cf
Author: philn at webkit.org <philn at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Dec 11 17:14:48 2010 +0000

    2010-12-11  Philippe Normand  <pnormand at igalia.com>
    
            Reviewed by Gustavo Noronha Silva.
    
            [GTK] launcher: disable the Mozilla-style fullscreen API
            https://bugs.webkit.org/show_bug.cgi?id=50874
    
            Disabling the fullscreen API until its implementation for GTK is
            mature enough. The webview setting for it is already FALSE by
            default.
    
            * GtkLauncher/main.c:
            (createWindow):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@73859 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 237b7dc..7ee5666 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,17 @@
+2010-12-11  Philippe Normand  <pnormand at igalia.com>
+
+        Reviewed by Gustavo Noronha Silva.
+
+        [GTK] launcher: disable the Mozilla-style fullscreen API
+        https://bugs.webkit.org/show_bug.cgi?id=50874
+
+        Disabling the fullscreen API until its implementation for GTK is
+        mature enough. The webview setting for it is already FALSE by
+        default.
+
+        * GtkLauncher/main.c:
+        (createWindow):
+
 2010-12-10  Eric Seidel  <eric at webkit.org>
 
         Reviewed by Adam Barth.
diff --git a/WebKitTools/GtkLauncher/main.c b/WebKitTools/GtkLauncher/main.c
index 2fc38ba..a1baf05 100644
--- a/WebKitTools/GtkLauncher/main.c
+++ b/WebKitTools/GtkLauncher/main.c
@@ -188,7 +188,6 @@ static GtkWidget* createToolbar(GtkWidget* uriEntry, WebKitWebView* webView)
 static GtkWidget* createWindow(WebKitWebView** outWebView)
 {
     WebKitWebView *webView;
-    WebKitWebSettings *webSettings;
     GtkWidget *vbox;
     GtkWidget *window;
     GtkWidget *uriEntry;
@@ -211,10 +210,6 @@ static GtkWidget* createWindow(WebKitWebView** outWebView)
 
     gtk_container_add(GTK_CONTAINER(window), vbox);
 
-    webSettings = webkit_web_view_get_settings(webView);
-    g_object_set(G_OBJECT(webSettings), "enable-fullscreen", TRUE, NULL);
-    webkit_web_view_set_settings(webView, webSettings);
-
     g_signal_connect(window, "destroy", G_CALLBACK(destroyCb), NULL);
 
     if (outWebView)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list