| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-panel.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-panel.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-panel.html
|
| index 5ea59839938b10cb1dbaa50d71a37bb18f5c269f..7b7e76ed311d46d4938ef0950bc247efba324b67 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-panel.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-panel.html
|
| @@ -38,7 +38,7 @@ function test()
|
| InspectorTest.runTestSuite([
|
| function testInitialLoad(next)
|
| {
|
| - Bindings.NetworkProject.forTarget(InspectorTest.mainTarget)._reset();
|
| + InspectorTest.resetNetworkProject(Bindings.NetworkProject.forTarget(InspectorTest.mainTarget));
|
| addNetworkFile("foobar.js");
|
|
|
| var sourcesNavigatorView = createNavigatorView();
|
| @@ -54,7 +54,7 @@ function test()
|
|
|
| function testReset(next)
|
| {
|
| - Bindings.NetworkProject.forTarget(InspectorTest.mainTarget)._reset();
|
| + InspectorTest.resetNetworkProject(Bindings.NetworkProject.forTarget(InspectorTest.mainTarget));
|
| var sourcesNavigatorView = createNavigatorView();
|
|
|
| var uiSourceCode = addNetworkFile("foo.js");
|
| @@ -66,7 +66,7 @@ function test()
|
| sourcesNavigatorView.revealUISourceCode(uiSourceCode);
|
| dumpNavigator(sourcesNavigatorView);
|
|
|
| - Bindings.NetworkProject.forTarget(InspectorTest.mainTarget)._reset();
|
| + InspectorTest.resetNetworkProject(Bindings.NetworkProject.forTarget(InspectorTest.mainTarget));
|
| dumpNavigator(sourcesNavigatorView);
|
| uiSourceCode = addNetworkFile("bar.js");
|
| sourcesNavigatorView.revealUISourceCode(uiSourceCode);
|
| @@ -77,7 +77,7 @@ function test()
|
|
|
| function testDebuggerUISourceCodeAddedAndRemoved(next)
|
| {
|
| - Bindings.NetworkProject.forTarget(InspectorTest.mainTarget)._reset();
|
| + InspectorTest.resetNetworkProject(Bindings.NetworkProject.forTarget(InspectorTest.mainTarget));
|
| var sourcesNavigatorView = createNavigatorView();
|
|
|
| var uiSourceCode = addNetworkFile("foo.js");
|
|
|