Changeset 73859 in webkit


Ignore:
Timestamp:
Dec 11, 2010 9:14:48 AM (13 years ago)
Author:
Philippe Normand
Message:

2010-12-11 Philippe Normand <pnormand@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):
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r73838 r73859  
     12010-12-11  Philippe Normand  <pnormand@igalia.com>
     2
     3        Reviewed by Gustavo Noronha Silva.
     4
     5        [GTK] launcher: disable the Mozilla-style fullscreen API
     6        https://bugs.webkit.org/show_bug.cgi?id=50874
     7
     8        Disabling the fullscreen API until its implementation for GTK is
     9        mature enough. The webview setting for it is already FALSE by
     10        default.
     11
     12        * GtkLauncher/main.c:
     13        (createWindow):
     14
    1152010-12-10  Eric Seidel  <eric@webkit.org>
    216
  • trunk/WebKitTools/GtkLauncher/main.c

    r73624 r73859  
    189189{
    190190    WebKitWebView *webView;
    191     WebKitWebSettings *webSettings;
    192191    GtkWidget *vbox;
    193192    GtkWidget *window;
     
    212211    gtk_container_add(GTK_CONTAINER(window), vbox);
    213212
    214     webSettings = webkit_web_view_get_settings(webView);
    215     g_object_set(G_OBJECT(webSettings), "enable-fullscreen", TRUE, NULL);
    216     webkit_web_view_set_settings(webView, webSettings);
    217 
    218213    g_signal_connect(window, "destroy", G_CALLBACK(destroyCb), NULL);
    219214
Note: See TracChangeset for help on using the changeset viewer.