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

git-svn-id: svn://svn.chromium.org/blink/trunk@83077 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 05a0763b
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 David Hyatt <hyatt@apple.com>
Reviewed by Dan Bernstein.
......@@ -709,9 +709,6 @@ fast/xmlhttprequest/xmlhttprequest-nonexistent-file.html
# Fails on GTK release bots, see https://bugs.webkit.org/show_bug.cgi?id=51027
plugins/refcount-leaks.html
# Fails on GTK bots, see https://bugs.webkit.org/show_bug.cgi?id=35144
plugins/set-status.html
# Fails on 32bits Debug bot, see https://bugs.webkit.org/show_bug.cgi?id=35158
fast/forms/restore-selection-after-layout.html
......
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):
2011-04-06 Chang Shu <cshu@webkit.org>
Reviewed by Darin Adler.
......
......@@ -941,10 +941,8 @@ static void webViewStatusBarTextChanged(WebKitWebView* view, const gchar* messag
{
// Are we doing anything wrong? One test that does not call
// dumpStatusCallbacks gets true here
if (gLayoutTestController->dumpStatusCallbacks()) {
if (message && strcmp(message, ""))
printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", message);
}
if (gLayoutTestController->dumpStatusCallbacks())
printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", message);
}
static gboolean webViewClose(WebKitWebView* view)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment