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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/breadcrumb-updates.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/breadcrumb-updates.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/breadcrumb-updates.html b/third_party/WebKit/LayoutTests/inspector/elements/breadcrumb-updates.html
index 9ff314524f73a67302d04686bd3d607674049106..c13deac063179c269a0fa64f107880fc80687cb0 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/breadcrumb-updates.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/breadcrumb-updates.html
@@ -27,14 +27,14 @@ function test()
function step1()
{
InspectorTest.dumpBreadcrumb("Original breadcrumb");
- InspectorTest.addSniffer(WebInspector.ElementsBreadcrumbs.prototype, "update", step2);
+ InspectorTest.addSniffer(Elements.ElementsBreadcrumbs.prototype, "update", step2);
InspectorTest.evaluateInPage("changeClass()");
}
function step2()
{
InspectorTest.dumpBreadcrumb("After class change");
- InspectorTest.addSniffer(WebInspector.ElementsBreadcrumbs.prototype, "update", step3);
+ InspectorTest.addSniffer(Elements.ElementsBreadcrumbs.prototype, "update", step3);
InspectorTest.evaluateInPage("deleteClass()");
}

Powered by Google App Engine
This is Rietveld 408576698