Guest User

Untitled

a guest
Jun 19th, 2018
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
  2. index 1910950..c76deed 100644
  3. --- a/WebKitTools/ChangeLog
  4. +++ b/WebKitTools/ChangeLog
  5. @@ -1,3 +1,14 @@
  6. +2010-10-21 Andreas Kling <kling@webkit.org>
  7. +
  8. + Reviewed by NOBODY (OOPS!).
  9. +
  10. + TestNetscapePlugIn: Actually call NPP_SetWindow on Unix
  11. +
  12. + We were just returning NPERR_NO_ERROR previously.
  13. +
  14. + * DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp:
  15. + (webkit_test_plugin_set_window):
  16. +
  17. 2010-10-21 Gabor Rapcsanyi <rgabor@inf.u-szeged.hu>
  18.  
  19. Reviewed by Csaba Osztrogonác.
  20. diff --git a/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp b/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp
  21. index 8c4e98d..c312375 100644
  22. --- a/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp
  23. +++ b/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp
  24. @@ -157,7 +157,7 @@ webkit_test_plugin_set_window(NPP instance, NPWindow *window)
  25.  
  26. }
  27.  
  28. - return NPERR_NO_ERROR;
  29. + return obj->pluginTest->NPP_SetWindow(instance, window);
  30. }
  31.  
  32. static void executeScript(const PluginObject* obj, const char* script)
Add Comment
Please, Sign In to add comment