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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/elements-panel-selection-after-delete.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/elements-panel-selection-after-delete.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/elements-panel-selection-after-delete.html b/third_party/WebKit/LayoutTests/inspector/elements/elements-panel-selection-after-delete.html
index 63c041e6384f18ea8bfa79d01ba012b9555715ec..9d4a736853e4e1c3b8761d80fb25fc81ddfbbc22 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/elements-panel-selection-after-delete.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/elements-panel-selection-after-delete.html
@@ -47,14 +47,14 @@ function test()
function removeElementAsUser(element, callback)
{
- InspectorTest.addSniffer(WebInspector.ElementsTreeOutline.prototype, "_updateModifiedNodes", callback);
+ InspectorTest.addSniffer(Elements.ElementsTreeOutline.prototype, "_updateModifiedNodes", callback);
element.remove();
}
function removeElementExternally(element, callback)
{
var node = element.node();
- InspectorTest.addSniffer(WebInspector.ElementsTreeOutline.prototype, "_updateChildren", callback);
+ InspectorTest.addSniffer(Elements.ElementsTreeOutline.prototype, "_updateChildren", callback);
node.removeNode();
}
@@ -113,7 +113,7 @@ function test()
function testExternalDelete(next)
{
// We should wait for container node to be updated since it is already populated.
- InspectorTest.addSniffer(WebInspector.ElementsTreeOutline.prototype, "_updateModifiedNodes", step2);
+ InspectorTest.addSniffer(Elements.ElementsTreeOutline.prototype, "_updateModifiedNodes", step2);
prepareTestTree();
function step2()

Powered by Google App Engine
This is Rietveld 408576698