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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/dynamic-script-tag.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/dynamic-script-tag.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/dynamic-script-tag.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/dynamic-script-tag.html
index 2d248eaaaf96889431aa61738d51cade9a35170f..1171caf09ee4cbcbc2dcce4f13b1ddff9f4b106e 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/dynamic-script-tag.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/dynamic-script-tag.html
@@ -52,7 +52,7 @@ var test = function()
function testOpenDevToolsThenReload(next)
{
- InspectorTest.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.ParsedScriptSource, scriptParsed);
+ InspectorTest.debuggerModel.addEventListener(SDK.DebuggerModel.Events.ParsedScriptSource, scriptParsed);
InspectorTest.addResult("Reloading page.");
InspectorTest.reloadPage(onPageReloaded);
@@ -71,7 +71,7 @@ var test = function()
// that the first one that has document url as a sourceURL is inline.
InspectorTest.addResult("The first script with document url as a sourceURL to be seen is " + (script.isInlineScript() ? "" : "not ") + "inline script.");
InspectorTest.assertTrue(script.isInlineScript(), "Only inline scripts should have document url as a sourceURL.");
- InspectorTest.debuggerModel.removeEventListener(WebInspector.DebuggerModel.Events.ParsedScriptSource, scriptParsed);
+ InspectorTest.debuggerModel.removeEventListener(SDK.DebuggerModel.Events.ParsedScriptSource, scriptParsed);
if (!--eventsCountBeforeNext)
next();
}

Powered by Google App Engine
This is Rietveld 408576698