| Index: third_party/WebKit/LayoutTests/inspector/sources/debugger/navigator-view.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/navigator-view.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/navigator-view.html
|
| index e90f073a46b640de40c6eb74ccbf684caa9aa485..64994321afa692203ff2a6e9bc9128ad24e53e47 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/navigator-view.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/navigator-view.html
|
| @@ -7,8 +7,8 @@
|
| <script>
|
| async function test()
|
| {
|
| - var networkProject1 = Bindings.NetworkProject.forTarget(InspectorTest.mainTarget);
|
| - networkProject1._reset();
|
| + Bindings.NetworkProject.forTarget(InspectorTest.mainTarget)._resetForTest();
|
| + Bindings.resourceBindingManager._resetForTest(InspectorTest.mainTarget);
|
|
|
| var pageMock = new InspectorTest.PageMock('mock-url.com/frame.html');
|
| pageMock.disableDOMCapability();
|
| @@ -142,7 +142,7 @@ async function test()
|
|
|
| InspectorTest.addResult("\n\n================================================");
|
| InspectorTest.addResult("Removing all resources:");
|
| - networkProject2._reset();
|
| + Bindings.NetworkProject.forTarget(target2)._resetForTest();
|
| InspectorTest.dumpNavigatorViewInAllModes(sourcesNavigatorView);
|
| InspectorTest.dumpNavigatorViewInAllModes(contentScriptsNavigatorView);
|
|
|
|
|