[webkit-changes] cvs commit: WebCore/khtml/ecma kjs_navigator.cpp

Geoffrey ggaren at opensource.apple.com
Fri Dec 16 10:35:20 PST 2005


ggaren      05/12/16 10:35:20

  Modified:    .        ChangeLog
               khtml/ecma kjs_navigator.cpp
  Log:
          Reviewed by Eric.
  
          Fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=6112
          REGRESSION: navigator.plugins empty.
  
          Layout test added:
          * fast/js/Plug-ins-expected.checksum: Added.
          * fast/js/Plug-ins-expected.png: Added.
          * fast/js/Plug-ins-expected.txt: Added.
          * fast/js/Plug-ins.html: Added.
  
          * khtml/ecma/kjs_navigator.cpp:
          (KJS::PluginBase::PluginBase): Changed initialization of KConfig from
          empty string to pluginsinfo.
  
  Revision  Changes    Path
  1.550     +17 -0     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.549
  retrieving revision 1.550
  diff -u -r1.549 -r1.550
  --- ChangeLog	16 Dec 2005 18:18:43 -0000	1.549
  +++ ChangeLog	16 Dec 2005 18:35:13 -0000	1.550
  @@ -1,3 +1,20 @@
  +2005-12-16  Geoffrey Garen  <ggaren at apple.com>
  +
  +        Reviewed by Eric.
  +
  +        Fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=6112
  +        REGRESSION: navigator.plugins empty.
  +
  +        Layout test added:
  +        * fast/js/Plug-ins-expected.checksum: Added.
  +        * fast/js/Plug-ins-expected.png: Added.
  +        * fast/js/Plug-ins-expected.txt: Added.
  +        * fast/js/Plug-ins.html: Added.
  +
  +        * khtml/ecma/kjs_navigator.cpp:
  +        (KJS::PluginBase::PluginBase): Changed initialization of KConfig from
  +        empty string to pluginsinfo.
  +
   2005-12-16  Mitz Pettel  <opendarwin.org at mitzpettel.com>
   
           Reviewed and landed by Darin.
  
  
  
  1.43      +1 -1      WebCore/khtml/ecma/kjs_navigator.cpp
  
  Index: kjs_navigator.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/ecma/kjs_navigator.cpp,v
  retrieving revision 1.42
  retrieving revision 1.43
  diff -u -r1.42 -r1.43
  --- kjs_navigator.cpp	16 Dec 2005 00:08:31 -0000	1.42
  +++ kjs_navigator.cpp	16 Dec 2005 18:35:19 -0000	1.43
  @@ -238,7 +238,7 @@
           mimes->setAutoDelete( true );
   
           // read configuration
  -        KConfig c("");
  +        KConfig c("pluginsinfo");
           unsigned num = (unsigned int)c.readNumEntry("number");
           for ( unsigned n=0; n<num; n++ ) {
   
  
  
  



More information about the webkit-changes mailing list