Changeset 71985 in webkit


Ignore:
Timestamp:
Nov 14, 2010 11:39:47 AM (13 years ago)
Author:
andreas.kling@nokia.com
Message:

2010-11-14 Andreas Kling <kling@webkit.org>

Reviewed by Antonio Gomes.

http/tests/plugins tests print "Unhandled variable" to stderr under Qt
https://bugs.webkit.org/show_bug.cgi?id=33438

Stifle "Unhandled variable" warning to match what the other
TestNetscapePlugin does (NPP_GetValue in TestNetscapePlugIn/main.cpp
simply returns NPERR_GENERIC_ERROR for unhandled variables.)

  • DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp: (webkit_test_plugin_get_value):
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r71978 r71985  
     12010-11-14  Andreas Kling  <kling@webkit.org>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        http/tests/plugins tests print "Unhandled variable" to stderr under Qt
     6        https://bugs.webkit.org/show_bug.cgi?id=33438
     7
     8        Stifle "Unhandled variable" warning to match what the other
     9        TestNetscapePlugin does (NPP_GetValue in TestNetscapePlugIn/main.cpp
     10        simply returns NPERR_GENERIC_ERROR for unhandled variables.)
     11
     12        * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
     13        (webkit_test_plugin_get_value):
     14
    1152010-11-13  David Levin  <levin@chromium.org>
    216
  • trunk/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp

    r71006 r71985  
    341341            break;
    342342        default:
    343             fprintf(stderr, "Unhandled variable\n");
    344343            err = NPERR_GENERIC_ERROR;
    345344            break;
Note: See TracChangeset for help on using the changeset viewer.