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

Timothy thatcher at opensource.apple.com
Thu Dec 1 15:16:44 PST 2005


thatcher    05/12/01 15:16:44

  Modified:    .        Tag: Safari-1-3-branch ChangeLog
               khtml/xml Tag: Safari-1-3-branch dom_nodeimpl.cpp
  Log:
          Merged fix from TOT to Safari-1-3-branch
  
      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.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.335.2.40 +13 -0     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.335.2.39
  retrieving revision 1.335.2.40
  diff -u -r1.335.2.39 -r1.335.2.40
  --- ChangeLog	1 Dec 2005 18:34:26 -0000	1.335.2.39
  +++ ChangeLog	1 Dec 2005 23:16:32 -0000	1.335.2.40
  @@ -1,6 +1,19 @@
   2005-12-01  Timothy Hatcher  <timothy at apple.com>
   
           Merged fix from TOT to Safari-1-3-branch
  +
  +    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-12-01  Timothy Hatcher  <timothy at apple.com>
  +
  +        Merged fix from TOT to Safari-1-3-branch
           Fixes: <rdar://problem/4344760> Glendale REGRESSION (Safari 416.12-417.2)
           gmail 'reply' does not fill in to: field or quoted message (3751)
   
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.140.6.9 +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.140.6.8
  retrieving revision 1.140.6.9
  diff -u -r1.140.6.8 -r1.140.6.9
  --- dom_nodeimpl.cpp	30 Nov 2005 22:46:14 -0000	1.140.6.8
  +++ dom_nodeimpl.cpp	1 Dec 2005 23:16:41 -0000	1.140.6.9
  @@ -97,6 +97,7 @@
         m_specified( false ),
         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