[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:39:00 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 4e7eadece93b9ca77da1738e63371ac0e79f464d
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Apr 26 06:05:37 2003 +0000

    	- fixed 3241344 -- REGRESSION: top of page missing on wired.com and cnn.com
    
            Caused by the ResolveNode speedup. Roll it out until I can figure out why.
    
            * kjs/nodes.cpp: (ResolveNode::evaluate): Go back to using evaluateReference.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4198 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index b2b4f76..6064b0c 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,5 +1,13 @@
 2003-04-25  Darin Adler  <darin at apple.com>
 
+	- fixed 3241344 -- REGRESSION: top of page missing on wired.com and cnn.com
+
+        Caused by the ResolveNode speedup. Roll it out until I can figure out why.
+
+        * kjs/nodes.cpp: (ResolveNode::evaluate): Go back to using evaluateReference.
+
+2003-04-25  Darin Adler  <darin at apple.com>
+
         Reviewed by Maciej.
 
         - a couple improvements that give a 6.6% speedup on iBench JavaScript
diff --git a/JavaScriptCore/ChangeLog-2003-10-25 b/JavaScriptCore/ChangeLog-2003-10-25
index b2b4f76..6064b0c 100644
--- a/JavaScriptCore/ChangeLog-2003-10-25
+++ b/JavaScriptCore/ChangeLog-2003-10-25
@@ -1,5 +1,13 @@
 2003-04-25  Darin Adler  <darin at apple.com>
 
+	- fixed 3241344 -- REGRESSION: top of page missing on wired.com and cnn.com
+
+        Caused by the ResolveNode speedup. Roll it out until I can figure out why.
+
+        * kjs/nodes.cpp: (ResolveNode::evaluate): Go back to using evaluateReference.
+
+2003-04-25  Darin Adler  <darin at apple.com>
+
         Reviewed by Maciej.
 
         - a couple improvements that give a 6.6% speedup on iBench JavaScript
diff --git a/JavaScriptCore/kjs/nodes.cpp b/JavaScriptCore/kjs/nodes.cpp
index 0f4b90a..7b694f8 100644
--- a/JavaScriptCore/kjs/nodes.cpp
+++ b/JavaScriptCore/kjs/nodes.cpp
@@ -221,20 +221,7 @@ Value ThisNode::evaluate(ExecState *exec)
 // ECMA 11.1.2 & 10.1.4
 Value ResolveNode::evaluate(ExecState *exec)
 {
-  // This is the same as calling evaluateReference(exec).getValue(exec),
-  // only considerably faster.
-  
-  ScopeChain chain = exec->context().imp()->scopeChain();
-
-  while (!chain.isEmpty()) {
-    ObjectImp *o = chain.top();
-    Value result = o->get(exec, ident);
-    if (result.type() != UndefinedType)
-      return result;
-    chain.pop();
-  }
-
-  return Reference(Null(), ident).getValue(exec);
+  return evaluateReference(exec).getValue(exec);
 }
 
 Reference ResolveNode::evaluateReference(ExecState *exec)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list