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

podivilov at chromium.org podivilov at chromium.org
Wed Dec 22 18:40:48 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 742cc8e5e1b4543caf547ce0ab415d8aea175e91
Author: podivilov at chromium.org <podivilov at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Dec 15 18:57:13 2010 +0000

    2010-12-15  Pavel Podivilov  <podivilov at chromium.org>
    
            Unreviewed, build fix for r74119.
    
            Fix debugger tests.
    
            * http/tests/inspector/debugger-test2.js:
            (initialize_DebuggerTest.InspectorTest.captureStackTrace):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74126 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index e0159f9..4bd181d 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,12 @@
+2010-12-15  Pavel Podivilov  <podivilov at chromium.org>
+
+        Unreviewed, build fix for r74119.
+
+        Fix debugger tests.
+
+        * http/tests/inspector/debugger-test2.js:
+        (initialize_DebuggerTest.InspectorTest.captureStackTrace):
+
 2010-12-15  Anton Muhin  <antonm at chromium.org>
 
         Unreviewed.  Adjusting v8-dependent test expectations.
diff --git a/LayoutTests/http/tests/inspector/debugger-test2.js b/LayoutTests/http/tests/inspector/debugger-test2.js
index 9931d41..e44fca9 100644
--- a/LayoutTests/http/tests/inspector/debugger-test2.js
+++ b/LayoutTests/http/tests/inspector/debugger-test2.js
@@ -82,7 +82,8 @@ InspectorTest.captureStackTrace = function(callFrames)
     InspectorTest.addResult("Call stack:");
     for (var i = 0; i < callFrames.length; i++) {
         var frame = callFrames[i];
-        var scriptOrResource = WebInspector.panels.scripts._sourceIDMap[frame.sourceID];
+        var script = WebInspector.debuggerModel.scriptForSourceID(frame.sourceID);
+        var scriptOrResource = script.resource || script;
         var url = scriptOrResource && WebInspector.displayNameForURL(scriptOrResource.sourceURL || scriptOrResource.url);
         var s = "    " + i + ") " + frame.functionName + " (" + url + ":" + frame.line + ")";
         InspectorTest.addResult(s);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list