Changeset 44632 in webkit


Ignore:
Timestamp:
Jun 12, 2009 3:24:28 PM (15 years ago)
Author:
kov@webkit.org
Message:

2009-06-12 Gustavo Noronha Silva <Gustavo Noronha Silva>

Reviewed by Jan Alonzo.

https://bugs.webkit.org/show_bug.cgi?id=25599
[GTK] Enable more tests

Implement dumping of status callback.

  • DumpRenderTree/gtk/DumpRenderTree.cpp: (webViewStatusBarTextChanged): (main):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r44621 r44632  
     12009-06-12  Gustavo Noronha Silva  <gns@gnome.org>
     2
     3        Reviewed by Jan Alonzo.
     4
     5        Enable test that uses the now implemented dumpStatusCallbacks()
     6        call.
     7
     8        * platform/gtk/Skipped:
     9
    1102009-06-11  Ryosuke Niwa  <rniwa@google.com>
    211
  • trunk/LayoutTests/platform/gtk/Skipped

    r44599 r44632  
    15951595fast/css/getComputedStyle/computed-style-without-renderer.html
    15961596fast/css/getComputedStyle/computed-style.html
    1597 fast/dom/assign-to-window-status.html
    15981597fast/dom/client-width-height-quirks.html
    15991598fast/dom/client-width-height.html
  • trunk/WebKitTools/ChangeLog

    r44609 r44632  
     12009-06-12  Gustavo Noronha Silva  <gns@gnome.org>
     2
     3        Reviewed by Jan Alonzo.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=25599
     6        [GTK] Enable more tests
     7
     8        Implement dumping of status callback.
     9
     10        * DumpRenderTree/gtk/DumpRenderTree.cpp:
     11        (webViewStatusBarTextChanged):
     12        (main):
     13
    1142009-06-11  John Abd-El-Malek  <jam@chromium.org>
    215
  • trunk/WebKitTools/DumpRenderTree/gtk/DumpRenderTree.cpp

    r44600 r44632  
    519519}
    520520
     521static void webViewStatusBarTextChanged(WebKitWebView* view, const gchar* message, gpointer data)
     522{
     523    // Are we doing anything wrong? One test that does not call
     524    // dumpStatusCallbacks gets true here
     525    if (gLayoutTestController->dumpStatusCallbacks()) {
     526        if (message && strcmp(message, ""))
     527            printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", message);
     528    }
     529}
     530
    521531int main(int argc, char* argv[])
    522532{
     
    561571    g_signal_connect(G_OBJECT(webView), "title-changed", G_CALLBACK(webViewTitleChanged), 0);
    562572    g_signal_connect(G_OBJECT(webView), "navigation-policy-decision-requested", G_CALLBACK(webViewNavigationPolicyDecisionRequested), 0);
     573    g_signal_connect(G_OBJECT(webView), "status-bar-text-changed", G_CALLBACK(webViewStatusBarTextChanged), 0);
    563574
    564575    setDefaultsToConsistentStateValuesForTesting();
Note: See TracChangeset for help on using the changeset viewer.