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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/move-node.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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: third_party/WebKit/LayoutTests/inspector/elements/move-node.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/move-node.html b/third_party/WebKit/LayoutTests/inspector/elements/move-node.html
index b0da541cdc096aceb9b5d6be4a40d668a8b08296..1044be37c9d93b8e7c366dead4a761cacd1a0d09 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/move-node.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/move-node.html
@@ -25,13 +25,13 @@ function test()
function testDragAndDrop(next)
{
var treeOutline = InspectorTest.firstElementsTreeOutline();
- treeOutline.addEventListener(WebInspector.ElementsTreeOutline.Events.SelectedNodeChanged, selectionChanged);
+ treeOutline.addEventListener(Elements.ElementsTreeOutline.Events.SelectedNodeChanged, selectionChanged);
function selectionChanged()
{
InspectorTest.addResult("===== Moved child2 =====");
InspectorTest.dumpElementsTree(containerNode);
- InspectorTest.addResult("Selection: " + WebInspector.DOMPresentationUtils.fullQualifiedSelector(treeOutline.selectedDOMNode()));
+ InspectorTest.addResult("Selection: " + Components.DOMPresentationUtils.fullQualifiedSelector(treeOutline.selectedDOMNode()));
next();
}

Powered by Google App Engine
This is Rietveld 408576698