| 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();
|
| }
|
|
|