Index: LayoutTests/inspector/reveal-objects.html |
diff --git a/LayoutTests/inspector/reveal-objects.html b/LayoutTests/inspector/reveal-objects.html |
index de142072dd1ef97e1177fc292b68ed5589afbc2c..64e6e52d71d92e9fc617b52312bfd463467f1f6b 100644 |
--- a/LayoutTests/inspector/reveal-objects.html |
+++ b/LayoutTests/inspector/reveal-objects.html |
@@ -33,7 +33,7 @@ function test() { |
{ |
installHooks(); |
- WebInspector.resourceTreeModel.forAllResources(function(r) { |
+ InspectorTest.resourceTreeModel.forAllResources(function(r) { |
if (r.url.indexOf("inspector-test.js") !== -1) { |
resource = r; |
return true; |
@@ -52,7 +52,7 @@ function test() { |
function firstXhrCallback() |
{ |
- requestWithResource = WebInspector.networkLog.requestForURL(resource.url); |
+ requestWithResource = InspectorTest.networkLog.requestForURL(resource.url); |
InspectorTest.evaluateInPage("loadResource('missing.js')", secondXhrCallback); |
} |