[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

commit-queue at webkit.org commit-queue at webkit.org
Mon Feb 21 00:37:04 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 94b3e8a9b666f5e214e155b49973f320eb58df61
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Feb 2 07:02:52 2011 +0000

    2011-02-01  James Robinson  <jamesr at chromium.org>
    
            Reviewed by Adam Barth.
    
            [v8] Increase V8 native->js recursion limit to match document.write() recursion limit
            https://bugs.webkit.org/show_bug.cgi?id=53566
    
            Unskip test that we now pass.
    
            * platform/chromium/test_expectations.txt:
    2011-02-01  James Robinson  <jamesr at chromium.org>
    
            Reviewed by Adam Barth.
    
            [v8] Increase V8 native->js recursion limit to match document.write() recursion limit
            https://bugs.webkit.org/show_bug.cgi?id=53566
    
            A recursion limit of 22 is necessary to pass fast/dom/Document/document-write-recursion.html.
            Other than being large enough for this one test case, this limit is arbitrary.
    
            * bindings/v8/V8Proxy.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@77364 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index bec097c..e803038 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,14 @@
+2011-02-01  James Robinson  <jamesr at chromium.org>
+
+        Reviewed by Adam Barth.
+
+        [v8] Increase V8 native->js recursion limit to match document.write() recursion limit
+        https://bugs.webkit.org/show_bug.cgi?id=53566
+
+        Unskip test that we now pass.
+
+        * platform/chromium/test_expectations.txt:
+
 2011-02-01  Dirk Pranke  <dpranke at chromium.org>
 
         Unreviewed, expectations change.
diff --git a/LayoutTests/platform/chromium/test_expectations.txt b/LayoutTests/platform/chromium/test_expectations.txt
index c01b74d..3a82cd5 100644
--- a/LayoutTests/platform/chromium/test_expectations.txt
+++ b/LayoutTests/platform/chromium/test_expectations.txt
@@ -3081,4 +3081,3 @@ BUGWK53505 WIN DEBUG : inspector/console-dir.html = PASS CRASH
 BUGWK53505 WIN DEBUG : inspector/cpu-profiler-profiling.html = PASS CRASH
 
 BUGWK53527 DEBUG : fast/frames/iframe-reparenting-new-page.html = CRASH PASS
-BUGCR71632 SKIP : fast/dom/Document/document-write-recursion.html = TIMEOUT
diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index a0bc296..f5f375a 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2011-02-01  James Robinson  <jamesr at chromium.org>
+
+        Reviewed by Adam Barth.
+
+        [v8] Increase V8 native->js recursion limit to match document.write() recursion limit
+        https://bugs.webkit.org/show_bug.cgi?id=53566
+
+        A recursion limit of 22 is necessary to pass fast/dom/Document/document-write-recursion.html.
+        Other than being large enough for this one test case, this limit is arbitrary.
+
+        * bindings/v8/V8Proxy.h:
+
 2011-02-01  Adam Barth  <abarth at webkit.org>
 
         Reviewed by Andreas Kling.
diff --git a/Source/WebCore/bindings/v8/V8Proxy.h b/Source/WebCore/bindings/v8/V8Proxy.h
index 3e7f37a..777815b 100644
--- a/Source/WebCore/bindings/v8/V8Proxy.h
+++ b/Source/WebCore/bindings/v8/V8Proxy.h
@@ -116,7 +116,7 @@ namespace WebCore {
                                  const BatchedCallback*, 
                                  size_t callbackCount);
 
-    const int kMaxRecursionDepth = 20;
+    const int kMaxRecursionDepth = 22;
 
     // The list of extensions that are registered for use with V8.
     typedef WTF::Vector<v8::Extension*> V8Extensions;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list