Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Unified Diff: LayoutTests/inspector/elements/insert-node.html

Issue 206313004: DevTools: Rename WebInspector.DOMAgent into WebInspector.DOMModel (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase on master Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/inspector/elements/insert-node.html
diff --git a/LayoutTests/inspector/elements/insert-node.html b/LayoutTests/inspector/elements/insert-node.html
index b526175c34fbd1350a8d80a4ff71ae7690a9f2f7..871bf9624878ae55f3d948a85b3dcea820f62bf1 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.domAgent.nodeForId(newNode.firstChild.id))
+ if (WebInspector.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.domAgent.nodeForId(newNode.firstChild.id))
+ if (WebInspector.domModel.nodeForId(newNode.firstChild.id))
InspectorTest.addResult("Success: child text is bound");
else
InspectorTest.addResult("Failed: child text is not bound");

Powered by Google App Engine
This is Rietveld 408576698