[webkit-changes] cvs commit: WebCore/khtml/xml dom_nodeimpl.cpp
Eric
eseidel at opensource.apple.com
Thu Dec 8 02:20:43 PST 2005
eseidel 05/12/08 02:20:42
Modified: . ChangeLog
khtml/xml dom_nodeimpl.cpp
Log:
Bug #: 5997
Submitted by: mitz
Reviewed by: eseidel
No test possible since this fixes random behavior.
Fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=5997
REGRESSION: Focus rings around links are not erased when focus is lost
* khtml/xml/dom_nodeimpl.cpp:
(DOM::NodeImpl::NodeImpl): Initialize m_inDetach to false.
Revision Changes Path
1.493 +12 -0 WebCore/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebCore/ChangeLog,v
retrieving revision 1.492
retrieving revision 1.493
diff -u -r1.492 -r1.493
--- ChangeLog 8 Dec 2005 09:17:00 -0000 1.492
+++ ChangeLog 8 Dec 2005 10:20:37 -0000 1.493
@@ -1,3 +1,15 @@
+2005-12-08 Mitz Pettel <opendarwin.org at mitzpettel.com>
+
+ Reviewed by eseidel. Committed by eseidel.
+
+ No test possible since this fixes random behavior.
+
+ Fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=5997
+ REGRESSION: Focus rings around links are not erased when focus is lost
+
+ * khtml/xml/dom_nodeimpl.cpp:
+ (DOM::NodeImpl::NodeImpl): Initialize m_inDetach to false.
+
2005-12-08 Eric Seidel <eseidel at apple.com>
Reviewed by darin.
1.222 +16 -15 WebCore/khtml/xml/dom_nodeimpl.cpp
Index: dom_nodeimpl.cpp
===================================================================
RCS file: /cvs/root/WebCore/khtml/xml/dom_nodeimpl.cpp,v
retrieving revision 1.221
retrieving revision 1.222
diff -u -r1.221 -r1.222
--- dom_nodeimpl.cpp 4 Dec 2005 20:55:46 -0000 1.221
+++ dom_nodeimpl.cpp 8 Dec 2005 10:20:41 -0000 1.222
@@ -113,24 +113,25 @@
m_previous(0),
m_next(0),
m_render(0),
- m_regdListeners( 0 ),
- m_nodeLists( 0 ),
- m_tabIndex( 0 ),
- m_hasId( false ),
- m_hasClass( false ),
- m_hasStyle( false ),
+ m_regdListeners(0),
+ m_nodeLists(0),
+ m_tabIndex(0),
+ m_hasId(false),
+ m_hasClass(false),
+ m_hasStyle(false),
m_attached(false),
- m_changed( false ),
- m_hasChangedChild( false ),
- m_inDocument( false ),
- m_isLink( false ),
- m_specified( false ),
- m_focused( false ),
- m_active( false ),
+ m_changed(false),
+ m_hasChangedChild(false),
+ m_inDocument(false),
+ m_isLink(false),
+ m_specified(false),
+ m_focused(false),
+ m_active(false),
m_hovered(false),
m_inActiveChain(false),
- m_styleElement( false ),
- m_implicit( false )
+ m_styleElement(false),
+ m_implicit(false),
+ m_inDetach(false)
{
#ifndef NDEBUG
++NodeImplCounter::count;
More information about the webkit-changes
mailing list