[webkit-changes] cvs commit: WebCore/khtml/xml dom_nodeimpl.cpp

Eric eseidel at opensource.apple.com
Tue Nov 29 16:29:12 PST 2005


eseidel     05/11/29 16:29:12

  Modified:    .        ChangeLog
               khtml/xml dom_nodeimpl.cpp
  Log:
  Bug #: 5879
  Submitted by: mitz
  Reviewed by: eseidel
          Fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=5879
          REGRESSION: Buttons go into pushed state when moused over when text field has focus
  
          * khtml/xml/dom_nodeimpl.cpp:
          (DOM::NodeImpl::NodeImpl): Initialize m_inActiveChain to false.
  
  Revision  Changes    Path
  1.433     +10 -0     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.432
  retrieving revision 1.433
  diff -u -r1.432 -r1.433
  --- ChangeLog	30 Nov 2005 00:11:06 -0000	1.432
  +++ ChangeLog	30 Nov 2005 00:29:07 -0000	1.433
  @@ -1,3 +1,13 @@
  +2005-11-30  Mitz Pettel  <opendarwin.org at mitzpettel.com>
  +
  +        Reviewed by eseidel.  Committed by eseidel.
  +
  +        Fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=5879
  +        REGRESSION: Buttons go into pushed state when moused over when text field has focus
  +
  +        * khtml/xml/dom_nodeimpl.cpp:
  +        (DOM::NodeImpl::NodeImpl): Initialize m_inActiveChain to false.
  +
   2005-11-29  Eric Seidel  <eseidel at apple.com>
   
           Reviewed by darin.
  
  
  
  1.217     +1 -0      WebCore/khtml/xml/dom_nodeimpl.cpp
  
  Index: dom_nodeimpl.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/xml/dom_nodeimpl.cpp,v
  retrieving revision 1.216
  retrieving revision 1.217
  diff -u -r1.216 -r1.217
  --- dom_nodeimpl.cpp	26 Nov 2005 22:35:44 -0000	1.216
  +++ dom_nodeimpl.cpp	30 Nov 2005 00:29:11 -0000	1.217
  @@ -128,6 +128,7 @@
         m_focused( false ),
         m_active( false ),
         m_hovered(false),
  +      m_inActiveChain(false),
         m_styleElement( false ),
         m_implicit( false )
   {
  
  
  



More information about the webkit-changes mailing list