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

Darin darin at opensource.apple.com
Sat Jul 30 13:27:57 PDT 2005


darin       05/07/30 13:27:57

  Modified:    .        ChangeLog
               khtml/xml dom_nodeimpl.cpp
  Log:
          Reviewed by me, change by Dave Hyatt.
  
          - fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=4221
            REGRESSION: Elements act as if in :hover meta-class during page load although they aren't
  
          * khtml/xml/dom_nodeimpl.cpp: (DOM::NodeImpl::NodeImpl): Initialize m_hovered to false.
  
  Revision  Changes    Path
  1.4504    +9 -0      WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.4503
  retrieving revision 1.4504
  diff -u -r1.4503 -r1.4504
  --- ChangeLog	30 Jul 2005 09:05:00 -0000	1.4503
  +++ ChangeLog	30 Jul 2005 20:27:51 -0000	1.4504
  @@ -1,3 +1,12 @@
  +2005-07-30  Darin Adler  <darin at apple.com>
  +
  +        Reviewed by me, change by Dave Hyatt.
  +
  +        - fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=4221
  +          REGRESSION: Elements act as if in :hover meta-class during page load although they aren't
  +
  +        * khtml/xml/dom_nodeimpl.cpp: (DOM::NodeImpl::NodeImpl): Initialize m_hovered to false.
  +
   2005-07-30  Maciej Stachowiak  <mjs at apple.com>
   
           Missing bits of last checkin...
  
  
  
  1.165     +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.164
  retrieving revision 1.165
  diff -u -r1.164 -r1.165
  --- dom_nodeimpl.cpp	30 Jul 2005 02:33:26 -0000	1.164
  +++ dom_nodeimpl.cpp	30 Jul 2005 20:27:56 -0000	1.165
  @@ -108,6 +108,7 @@
         m_specified( false ),
         m_focused( false ),
         m_active( false ),
  +      m_hovered(false),
         m_styleElement( false ),
         m_implicit( false )
   {
  
  
  



More information about the webkit-changes mailing list