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

Unified Diff: LayoutTests/inspector/debugger/navigator-view.html

Issue 23484056: [DevTools] Renaming Scripts panel to Sources panel (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Modified missed files Created 7 years, 3 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: LayoutTests/inspector/debugger/navigator-view.html
diff --git a/LayoutTests/inspector/debugger/navigator-view.html b/LayoutTests/inspector/debugger/navigator-view.html
index 2a28cc4b0fe187649df6f17c114d403acfdde4e1..73d5c89d2954b59503b454b43bb1ec64580edd51 100644
--- a/LayoutTests/inspector/debugger/navigator-view.html
+++ b/LayoutTests/inspector/debugger/navigator-view.html
@@ -7,9 +7,9 @@
<script>
function test()
{
- WebInspector.showPanel("scripts");
+ WebInspector.showPanel("sources");
InspectorTest.createWorkspace(true);
- var panel = new WebInspector.ScriptsPanel(InspectorTest.testWorkspace);
+ var panel = new WebInspector.SourcesPanel(InspectorTest.testWorkspace);
var navigator = panel._navigator;
var uiSourceCodes = [];
@@ -27,7 +27,7 @@ function test()
function expandDomains(tree)
{
- var children = navigator._scriptsView._scriptsTree.children;
+ var children = navigator._sourcesView._scriptsTree.children;
for (var i = 0; i < children.length; ++i)
children[i].expand();
}
@@ -37,7 +37,7 @@ function test()
addUISourceCode(rootURL + "foo/bar/script.js", false);
dumpNavigator();
InspectorTest.addResult("Expanding domains:");
- expandDomains(navigator._scriptsView._scriptsTree);
+ expandDomains(navigator._sourcesView._scriptsTree);
dumpNavigator();
InspectorTest.addResult("Adding second resource:");
addUISourceCode(rootURL + "foo/bar/script.js?a=2", false);
« no previous file with comments | « LayoutTests/inspector/debugger/live-edit-no-reveal.html ('k') | LayoutTests/inspector/debugger/properties-special.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698