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

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:03:53 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 8943db9c32658f3f6f99f2273e140ee504567491
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 19 18:07:00 2002 +0000

    	- fixed 3105026 -- REGRESSION: DHTML menus are broken all over the place
    
            * kjs/types.cpp: (List::prepend): Fix backwards links in new node.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2756 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 8a8ad5f..aa80788 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,11 @@
 2002-11-19  Darin Adler  <darin at apple.com>
 
+	- fixed 3105026 -- REGRESSION: DHTML menus are broken all over the place
+
+        * kjs/types.cpp: (List::prepend): Fix backwards links in new node.
+
+2002-11-19  Darin Adler  <darin at apple.com>
+
 	- a fix that gives another 1.5% on the iBench JavaScript test
 
         * kjs/ustring.cpp: (UString::from): Stop using sprintf to format integers.
diff --git a/JavaScriptCore/ChangeLog-2002-12-03 b/JavaScriptCore/ChangeLog-2002-12-03
index 8a8ad5f..aa80788 100644
--- a/JavaScriptCore/ChangeLog-2002-12-03
+++ b/JavaScriptCore/ChangeLog-2002-12-03
@@ -1,5 +1,11 @@
 2002-11-19  Darin Adler  <darin at apple.com>
 
+	- fixed 3105026 -- REGRESSION: DHTML menus are broken all over the place
+
+        * kjs/types.cpp: (List::prepend): Fix backwards links in new node.
+
+2002-11-19  Darin Adler  <darin at apple.com>
+
 	- a fix that gives another 1.5% on the iBench JavaScript test
 
         * kjs/ustring.cpp: (UString::from): Stop using sprintf to format integers.
diff --git a/JavaScriptCore/ChangeLog-2003-10-25 b/JavaScriptCore/ChangeLog-2003-10-25
index 8a8ad5f..aa80788 100644
--- a/JavaScriptCore/ChangeLog-2003-10-25
+++ b/JavaScriptCore/ChangeLog-2003-10-25
@@ -1,5 +1,11 @@
 2002-11-19  Darin Adler  <darin at apple.com>
 
+	- fixed 3105026 -- REGRESSION: DHTML menus are broken all over the place
+
+        * kjs/types.cpp: (List::prepend): Fix backwards links in new node.
+
+2002-11-19  Darin Adler  <darin at apple.com>
+
 	- a fix that gives another 1.5% on the iBench JavaScript test
 
         * kjs/ustring.cpp: (UString::from): Stop using sprintf to format integers.
diff --git a/JavaScriptCore/kjs/types.cpp b/JavaScriptCore/kjs/types.cpp
index b3972ad..77dd18c 100644
--- a/JavaScriptCore/kjs/types.cpp
+++ b/JavaScriptCore/kjs/types.cpp
@@ -185,7 +185,7 @@ void List::prepend(const Value& val)
 
 void List::prepend(ValueImp *val)
 {
-  ListNode *n = new ListNode(val, hook->prev, hook);
+  ListNode *n = new ListNode(val, hook, hook->next);
   if (!m_needsMarking) {
     val->ref();
   }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list