Changeset 89908 in webkit


Ignore:
Timestamp:
Jun 28, 2011 2:12:14 AM (13 years ago)
Author:
kbalazs@webkit.org
Message:

2011-06-28 Balazs Kelemen <kbalazs@webkit.org>

Reviewed by Kenneth Rohde Christiansen.

[X11][WK2] plugins/plugin-javascript-access fails
https://bugs.webkit.org/show_bug.cgi?id=63464

  • platform/qt-wk2/Skipped:

2011-06-28 Balazs Kelemen <kbalazs@webkit.org>

Reviewed by Kenneth Rohde Christiansen.

[X11][WK2] plugins/plugin-javascript-access fails
https://bugs.webkit.org/show_bug.cgi?id=63464

  • Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp: (WebKit::NetscapePluginModule::getPluginInfo): Determine the name of the plugin.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r89902 r89908  
     12011-06-28  Balazs Kelemen  <kbalazs@webkit.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [X11][WK2] plugins/plugin-javascript-access fails
     6        https://bugs.webkit.org/show_bug.cgi?id=63464
     7
     8        * platform/qt-wk2/Skipped:
     9
    1102011-06-28  Csaba Osztrogonác  <ossy@webkit.org>
    211
  • trunk/LayoutTests/platform/qt-wk2/Skipped

    r89900 r89908  
    14961496plugins/netscape-dom-access.html
    14971497plugins/npp-set-window-called-during-destruction.html
    1498 plugins/plugin-javascript-access.html
    14991498plugins/reloadplugins-and-pages.html
    15001499plugins/destroy-stream-twice.html
  • trunk/Source/WebKit2/ChangeLog

    r89894 r89908  
     12011-06-28  Balazs Kelemen  <kbalazs@webkit.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [X11][WK2] plugins/plugin-javascript-access fails
     6        https://bugs.webkit.org/show_bug.cgi?id=63464
     7
     8        * Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp:
     9        (WebKit::NetscapePluginModule::getPluginInfo):
     10        Determine the name of the plugin.
     11
    1122011-06-27  Yuta Kitamura  <yutak@chromium.org>
    213
  • trunk/Source/WebKit2/Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp

    r89539 r89908  
    149149    }
    150150
    151     char* buffer = 0;
    152     NPError err = NPP_GetValue(0, NPPVpluginDescriptionString, &buffer);
    153     if (err == NPERR_NO_ERROR)
     151    char* buffer;
     152    NPError error = NPP_GetValue(0, NPPVpluginNameString, &buffer);
     153    if (error == NPERR_NO_ERROR)
     154        plugin.info.name = buffer;
     155
     156    error = NPP_GetValue(0, NPPVpluginDescriptionString, &buffer);
     157    if (error == NPERR_NO_ERROR)
    154158        plugin.info.desc = buffer;
    155159
Note: See TracChangeset for help on using the changeset viewer.