Index: LayoutTests/inspector/elements/insert-node.html |
diff --git a/LayoutTests/inspector/elements/insert-node.html b/LayoutTests/inspector/elements/insert-node.html |
index 871bf9624878ae55f3d948a85b3dcea820f62bf1..34522e5cee400c0b9252b247445d0739dc94c864 100644 |
--- a/LayoutTests/inspector/elements/insert-node.html |
+++ b/LayoutTests/inspector/elements/insert-node.html |
@@ -103,7 +103,7 @@ function test() |
InspectorTest.addResult("======== Appended with text========="); |
InspectorTest.dumpElementsTree(containerNode); |
var newNode = InspectorTest.expandedNodeWithId("child-with-text"); |
- if (WebInspector.domModel.nodeForId(newNode.firstChild.id)) |
+ if (InspectorTest.domModel.nodeForId(newNode.firstChild.id)) |
InspectorTest.addResult("Success: child text is bound"); |
else |
InspectorTest.addResult("Failed: child text is not bound"); |
@@ -124,7 +124,7 @@ function test() |
{ |
InspectorTest.dumpElementsTree(containerNode); |
var newNode = InspectorTest.expandedNodeWithId("child3"); |
- if (WebInspector.domModel.nodeForId(newNode.firstChild.id)) |
+ if (InspectorTest.domModel.nodeForId(newNode.firstChild.id)) |
InspectorTest.addResult("Success: child text is bound"); |
else |
InspectorTest.addResult("Failed: child text is not bound"); |