Changeset 86611 in webkit


Ignore:
Timestamp:
May 16, 2011 3:05:30 PM (13 years ago)
Author:
robert@webkit.org
Message:

2011-05-16 Robert Hogan <robert@webkit.org>

Reviewed by Anders Carlsson.

[Gtk] plugins/get-url-notify-with-url-that-fails-to-load.html crashes on buildbot

https://bugs.webkit.org/show_bug.cgi?id=60838

  • platform/gtk/Skipped:
  • platform/qt/Skipped:

2011-05-16 Robert Hogan <robert@webkit.org>

Reviewed by Anders Carlsson.

[Gtk] plugins/get-url-notify-with-url-that-fails-to-load.html crashes on buildbot

https://bugs.webkit.org/show_bug.cgi?id=60838

The unix test plugin needs to call the test's NPP_URLNotify
rather than the browsers.

  • DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp: (webkit_test_plugin_url_notify):
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r86610 r86611  
     12011-05-16  Robert Hogan  <robert@webkit.org>
     2
     3        Reviewed by Anders Carlsson.
     4
     5        [Gtk] plugins/get-url-notify-with-url-that-fails-to-load.html crashes on buildbot
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=60838
     8
     9        * platform/gtk/Skipped:
     10        * platform/qt/Skipped:
     11
    1122011-05-16  Dan Bernstein  <mitz@apple.com>
    213
  • trunk/LayoutTests/platform/gtk/Skipped

    r86546 r86611  
    157157# https://bugs.webkit.org/show_bug.cgi?id=31433
    158158plugins/document-open.html
    159 
    160 # https://bugs.webkit.org/show_bug.cgi?id=60838
    161 plugins/get-url-notify-with-url-that-fails-to-load.html
    162159
    163160# https://bugs.webkit.org/show_bug.cgi?id=37574
  • trunk/LayoutTests/platform/qt/Skipped

    r86551 r86611  
    360360# ---- to be reviewed
    361361http/tests/plugins/plugin-document-has-focus.html
    362 
    363 # Crashes on the buildbot.
    364 plugins/get-url-notify-with-url-that-fails-to-load.html
    365362
    366363# [Qt] plugins/keyboard-events.html fails after r72717
  • trunk/Tools/ChangeLog

    r86609 r86611  
     12011-05-16  Robert Hogan  <robert@webkit.org>
     2
     3        Reviewed by Anders Carlsson.
     4
     5        [Gtk] plugins/get-url-notify-with-url-that-fails-to-load.html crashes on buildbot
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=60838
     8
     9        The unix test plugin needs to call the test's NPP_URLNotify
     10        rather than the browsers.
     11
     12        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
     13        (webkit_test_plugin_url_notify):
     14
    1152011-05-16  Brent Fulgham  <bfulgham@webkit.org>
    216
  • trunk/Tools/DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp

    r86505 r86611  
    318318{
    319319    PluginObject* obj = static_cast<PluginObject*>(instance->pdata);
     320    if (obj->pluginTest->NPP_URLNotify(url, reason, notifyData))
     321        return;
    320322
    321323    if (obj->onURLNotify)
Note: See TracChangeset for help on using the changeset viewer.