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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-ui/scripts-panel.html

Issue 2736393002: DevTools: split network project into buckets (Closed)
Patch Set: fix tests Created 3 years, 9 months 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-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");

Powered by Google App Engine
This is Rietveld 408576698