[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 06:58:25 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f5d07126d29730aded131a2ed1d366fb9286182f
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Nov 9 04:12:14 2002 +0000

    	- fixed 3096451 - REGRESSION: clicking on link to open window only
    	works when pop-up suppression is off
    
            * khtml/ecma/kjs_binding.cpp:
            (ScriptInterpreter::ScriptInterpreter): Initialize m_timerCallback
    	to false.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2610 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 67a8e28..ed81bf7 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+2002-11-08  Maciej Stachowiak  <mjs at apple.com>
+
+	- fixed 3096451 - REGRESSION: clicking on link to open window only
+	works when pop-up suppression is off
+	
+        * khtml/ecma/kjs_binding.cpp:
+        (ScriptInterpreter::ScriptInterpreter): Initialize m_timerCallback
+	to false.
+
 b2002-11-08  Darin Adler  <darin at apple.com>
 
         * kwq/KWQComboBox.mm: Bump fudge factor up one pixel. You could see
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 67a8e28..ed81bf7 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,12 @@
+2002-11-08  Maciej Stachowiak  <mjs at apple.com>
+
+	- fixed 3096451 - REGRESSION: clicking on link to open window only
+	works when pop-up suppression is off
+	
+        * khtml/ecma/kjs_binding.cpp:
+        (ScriptInterpreter::ScriptInterpreter): Initialize m_timerCallback
+	to false.
+
 b2002-11-08  Darin Adler  <darin at apple.com>
 
         * kwq/KWQComboBox.mm: Bump fudge factor up one pixel. You could see
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 67a8e28..ed81bf7 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2002-11-08  Maciej Stachowiak  <mjs at apple.com>
+
+	- fixed 3096451 - REGRESSION: clicking on link to open window only
+	works when pop-up suppression is off
+	
+        * khtml/ecma/kjs_binding.cpp:
+        (ScriptInterpreter::ScriptInterpreter): Initialize m_timerCallback
+	to false.
+
 b2002-11-08  Darin Adler  <darin at apple.com>
 
         * kwq/KWQComboBox.mm: Bump fudge factor up one pixel. You could see
diff --git a/WebCore/khtml/ecma/kjs_binding.cpp b/WebCore/khtml/ecma/kjs_binding.cpp
index 2721153..a8dda08 100644
--- a/WebCore/khtml/ecma/kjs_binding.cpp
+++ b/WebCore/khtml/ecma/kjs_binding.cpp
@@ -136,7 +136,7 @@ Value DOMFunction::call(ExecState *exec, Object &thisObj, const List &args)
 
 ScriptInterpreter::ScriptInterpreter( const Object &global, KHTMLPart* part )
   : Interpreter( global ), m_part( part ), m_domObjects(1021),
-    m_evt( 0L ), m_inlineCode(false)
+    m_evt( 0L ), m_inlineCode(false), m_timerCallback(false)
 {
 #ifdef KJS_VERBOSE
   kdDebug(6070) << "ScriptInterpreter::ScriptInterpreter " << this << " for part=" << m_part << endl;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list