Changeset 19275 in webkit


Ignore:
Timestamp:
Jan 30, 2007 3:24:24 PM (17 years ago)
Author:
weinig
Message:

LayoutTests:

Reviewed by Geoff.

  • plugins/createScriptableObject-before-start-expected.txt: Added.
  • plugins/createScriptableObject-before-start.html: Added.

WebKit:

Reviewed by Geoff.

Test: plugins/createScriptableObject-before-start.html

  • Plugins/WebBaseNetscapePluginView.mm: (-[WebBaseNetscapePluginView createPluginScriptableObject]): Return NULL if the plugin is not started.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r19273 r19275  
     12007-01-30  Mitz Pettel  <mitz@webkit.org>
     2
     3        Reviewed by Geoff.
     4
     5        - test for http://bugs.webkit.org/show_bug.cgi?id=12050
     6          REGRESSION: Assertion failure in -[WebBaseNetscapePluginView willCallPlugInFunction] (plugin)
     7
     8        * plugins/createScriptableObject-before-start-expected.txt: Added.
     9        * plugins/createScriptableObject-before-start.html: Added.
     10
    1112007-01-30  Mitz Pettel  <mitz@webkit.org>
    212
  • trunk/WebKit/ChangeLog

    r19274 r19275  
     12007-01-30  Mitz Pettel  <mitz@webkit.org>
     2
     3        Reviewed by Geoff.
     4
     5        - fix http://bugs.webkit.org/show_bug.cgi?id=12050
     6          REGRESSION: Assertion failure in -[WebBaseNetscapePluginView willCallPlugInFunction] (plugin)
     7
     8        Test: plugins/createScriptableObject-before-start.html
     9
     10        * Plugins/WebBaseNetscapePluginView.mm:
     11        (-[WebBaseNetscapePluginView createPluginScriptableObject]): Return NULL if
     12        the plugin is not started.
     13
    1142007-01-30  Maciej Stachowiak  <mjs@apple.com>
    215
  • trunk/WebKit/Plugins/WebBaseNetscapePluginView.mm

    r19167 r19275  
    17671767- (NPObject *)createPluginScriptableObject
    17681768{
    1769     if (!NPP_GetValue)
     1769    if (!NPP_GetValue || ![self isStarted])
    17701770        return NULL;
    17711771       
Note: See TracChangeset for help on using the changeset viewer.