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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-breakpoints-not-activated-on-reload.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/sources/debugger-breakpoints/debugger-breakpoints-not-activated-on-reload.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-breakpoints-not-activated-on-reload.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-breakpoints-not-activated-on-reload.html
index eab218ab3d6b362a31d0d5235c632f463c846d19..f7ec6f33b605c902e0f30f6a7aceac0151c80796 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-breakpoints-not-activated-on-reload.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-breakpoints-not-activated-on-reload.html
@@ -25,14 +25,14 @@ var test = function()
{
InspectorTest.addResult("Main resource was shown.");
InspectorTest.setBreakpoint(sourceFrame, 8, "", true);
- WebInspector.panels.sources._toggleBreakpointsActive();
+ UI.panels.sources._toggleBreakpointsActive();
InspectorTest.reloadPage(step3);
}
function step3()
{
InspectorTest.addResult("Main resource was shown.");
- if (!WebInspector.breakpointManager.breakpointsActive())
+ if (!Bindings.breakpointManager.breakpointsActive())
InspectorTest.addResult("Breakpoints are deactivated.");
else
InspectorTest.addResult("Error: breakpoints are activated.");

Powered by Google App Engine
This is Rietveld 408576698