[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:07:24 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 787e87f82ec9c025b0984ef46706bfce2bf54d7a
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 30 06:55:56 2003 +0000

            Reviewed by Dave.
    
    	- fixed 3467499 - REGRESSION: onClick handlers on links don't work (bubbling broken)
    
            * khtml/xml/dom2_eventsimpl.cpp:
            (EventImpl::EventImpl): Initialize m_cancelBubble (duh).
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5311 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index caed66e..2df8234 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2003-10-29  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Dave.
+
+	- fixed 3467499 - REGRESSION: onClick handlers on links don't work (bubbling broken)
+	
+        * khtml/xml/dom2_eventsimpl.cpp:
+        (EventImpl::EventImpl): Initialize m_cancelBubble (duh).
+
 2003-10-29  David Hyatt  <hyatt at apple.com>
 
 	Fix for 3466802.  When breaking on a newline, "pre" is determined by checking the actual object that
diff --git a/WebCore/khtml/xml/dom2_eventsimpl.cpp b/WebCore/khtml/xml/dom2_eventsimpl.cpp
index be3d7e7..1e72c2f 100644
--- a/WebCore/khtml/xml/dom2_eventsimpl.cpp
+++ b/WebCore/khtml/xml/dom2_eventsimpl.cpp
@@ -42,6 +42,7 @@ EventImpl::EventImpl()
 
     m_propagationStopped = false;
     m_defaultPrevented = false;
+    m_cancelBubble = false;
     m_id = UNKNOWN_EVENT;
     m_currentTarget = 0;
     m_eventPhase = 0;
@@ -61,6 +62,7 @@ EventImpl::EventImpl(EventId _id, bool canBubbleArg, bool cancelableArg)
 
     m_propagationStopped = false;
     m_defaultPrevented = false;
+    m_cancelBubble = false;
     m_id = _id;
     m_currentTarget = 0;
     m_eventPhase = 0;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list