[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 13:03:05 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 16ff670afa66a76762c69c661025b1ead20a9ff2
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Sep 6 13:36:46 2010 +0000

    2010-09-06  Pavel Podivilov  <podivilov at chromium.org>
    
            Reviewed by Yury Semikhatsky.
    
            Web Inspector: fix chromium devtools tests
            https://bugs.webkit.org/show_bug.cgi?id=45258
    
            * src/js/Tests.js:
            (.TestSuite.prototype._waitForScriptPause):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66825 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index 8a34b00..d7b1599 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,13 @@
+2010-09-06  Pavel Podivilov  <podivilov at chromium.org>
+
+        Reviewed by Yury Semikhatsky.
+
+        Web Inspector: fix chromium devtools tests
+        https://bugs.webkit.org/show_bug.cgi?id=45258
+
+        * src/js/Tests.js:
+        (.TestSuite.prototype._waitForScriptPause):
+
 2010-08-26  Jeremy Orlow  <jorlow at chromium.org>
 
         Reviewed by Steve Block.
diff --git a/WebKit/chromium/src/js/Tests.js b/WebKit/chromium/src/js/Tests.js
index 41574b4..ba9a76a 100644
--- a/WebKit/chromium/src/js/Tests.js
+++ b/WebKit/chromium/src/js/Tests.js
@@ -1029,7 +1029,8 @@ TestSuite.prototype._waitForScriptPause = function(expectations, callback)
     test.addSniffer(
         WebInspector,
         "pausedScript",
-        function(callFrames) {
+        function(details) {
+            var callFrames = details.callFrames;
             var functionsOnStack = [];
             for (var i = 0; i < callFrames.length; i++)
                 functionsOnStack.push(callFrames[i].functionName);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list