[webkit-changes] cvs commit: WebCore/khtml/xml dom_nodeimpl.cpp
Timothy
thatcher at opensource.apple.com
Thu Dec 1 15:15:50 PST 2005
thatcher 05/12/01 15:15:50
Modified: . Tag: Safari-2-0-branch ChangeLog
khtml/xml Tag: Safari-2-0-branch dom_nodeimpl.cpp
Log:
Merged fix from TOT to Safari-2-0-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.1.2.84 +13 -0 WebCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebCore/ChangeLog,v
retrieving revision 1.1.2.83
retrieving revision 1.1.2.84
diff -u -r1.1.2.83 -r1.1.2.84
--- ChangeLog 1 Dec 2005 20:10:00 -0000 1.1.2.83
+++ ChangeLog 1 Dec 2005 23:15:38 -0000 1.1.2.84
@@ -1,5 +1,18 @@
2005-12-01 Timothy Hatcher <timothy at apple.com>
+ Merged fix from TOT to Safari-2-0-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>
+
Fix by Geoff
- <rdar://problem/4352697> Glendale Regression: Some widgets don't get
No revision
No revision
1.140.8.18 +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.8.17
retrieving revision 1.140.8.18
diff -u -r1.140.8.17 -r1.140.8.18
--- dom_nodeimpl.cpp 30 Nov 2005 22:44:49 -0000 1.140.8.17
+++ dom_nodeimpl.cpp 1 Dec 2005 23:15:47 -0000 1.140.8.18
@@ -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