Index: LayoutTests/inspector/sources/debugger/callstack-placards-discarded.html |
diff --git a/LayoutTests/inspector/sources/debugger/callstack-placards-discarded.html b/LayoutTests/inspector/sources/debugger/callstack-placards-discarded.html |
index 8eb6ee97edf5428af6a546ee3d037c56ed34b6c9..32b298daf9c8f8d75d491adb0c5868514b0e9a85 100644 |
--- a/LayoutTests/inspector/sources/debugger/callstack-placards-discarded.html |
+++ b/LayoutTests/inspector/sources/debugger/callstack-placards-discarded.html |
@@ -14,7 +14,7 @@ var test = function() |
InspectorTest.runDebuggerTestSuite([ |
function testCallStackPlacardsDiscarded(next) |
{ |
- WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerPaused, didPause, this); |
+ InspectorTest.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerPaused, didPause, this); |
var previousCount = undefined; |
function didPause(event) |
{ |
@@ -55,7 +55,7 @@ var test = function() |
function liveLocationsCount() |
{ |
var count = 0; |
- var infos = WebInspector.debuggerWorkspaceBinding._targetToData.get(WebInspector.debuggerModel.target()).scriptDataMap.valuesArray(); |
+ var infos = WebInspector.debuggerWorkspaceBinding._targetToData.get(InspectorTest.debuggerModel.target()).scriptDataMap.valuesArray(); |
infos.forEach(function(info) { |
count += info._locations.size; |
}); |