Changeset 83077 in webkit


Ignore:
Timestamp:
Apr 6, 2011 11:40:50 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-04-06 Zan Dobersek <zandobersek@gmail.com>

Reviewed by Eric Seidel.

[Gtk] plugins/set-status.html fails
https://bugs.webkit.org/show_bug.cgi?id=57844

Unskip a newly-passing test.

  • platform/gtk/Skipped:

2011-04-06 Zan Dobersek <zandobersek@gmail.com>

Reviewed by Eric Seidel.

[Gtk] plugins/set-status.html fails
https://bugs.webkit.org/show_bug.cgi?id=57844

Allow an empty status text to be dumped.

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

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r83075 r83077  
     12011-04-06  Zan Dobersek  <zandobersek@gmail.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [Gtk] plugins/set-status.html fails
     6        https://bugs.webkit.org/show_bug.cgi?id=57844
     7
     8        Unskip a newly-passing test.
     9
     10        * platform/gtk/Skipped:
     11
    1122011-04-06  David Hyatt  <hyatt@apple.com>
    213
  • trunk/LayoutTests/platform/gtk/Skipped

    r82833 r83077  
    709709# Fails on GTK release bots, see https://bugs.webkit.org/show_bug.cgi?id=51027
    710710plugins/refcount-leaks.html
    711 
    712 # Fails on GTK bots, see https://bugs.webkit.org/show_bug.cgi?id=35144
    713 plugins/set-status.html
    714711
    715712# Fails on 32bits Debug bot, see https://bugs.webkit.org/show_bug.cgi?id=35158
  • trunk/Tools/ChangeLog

    r83071 r83077  
     12011-04-06  Zan Dobersek  <zandobersek@gmail.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [Gtk] plugins/set-status.html fails
     6        https://bugs.webkit.org/show_bug.cgi?id=57844
     7
     8        Allow an empty status text to be dumped.
     9
     10        * DumpRenderTree/gtk/DumpRenderTree.cpp:
     11        (webViewStatusBarTextChanged):
     12
    1132011-04-06  Chang Shu  <cshu@webkit.org>
    214
  • trunk/Tools/DumpRenderTree/gtk/DumpRenderTree.cpp

    r83068 r83077  
    942942    // Are we doing anything wrong? One test that does not call
    943943    // dumpStatusCallbacks gets true here
    944     if (gLayoutTestController->dumpStatusCallbacks()) {
    945         if (message && strcmp(message, ""))
    946             printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", message);
    947     }
     944    if (gLayoutTestController->dumpStatusCallbacks())
     945        printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", message);
    948946}
    949947
Note: See TracChangeset for help on using the changeset viewer.