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

Unified Diff: LayoutTests/http/tests/inspector/search/scripts-search-scope.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/http/tests/inspector/search/scripts-search-scope.html
diff --git a/LayoutTests/http/tests/inspector/search/scripts-search-scope.html b/LayoutTests/http/tests/inspector/search/scripts-search-scope.html
index d14b2be274712af8f8c796c09155234c6fe6d656..7e1e6b85e289c6f1235ae1cd4a1866fedec9aa02 100644
--- a/LayoutTests/http/tests/inspector/search/scripts-search-scope.html
+++ b/LayoutTests/http/tests/inspector/search/scripts-search-scope.html
@@ -10,7 +10,7 @@ function test()
function step1()
{
- WebInspector.showPanel("scripts");
+ WebInspector.showPanel("sources");
InspectorTest.runAfterResourcesAreFinished(["search.html", "search.js", "search.css"], step2)
}
@@ -18,7 +18,7 @@ function test()
function runSearchAndDumpResults(searchConfig, callback)
{
var searchResults = [];
- var scope = new WebInspector.ScriptsSearchScope(WebInspector.workspace);
+ var scope = new WebInspector.SourcesSearchScope(WebInspector.workspace);
var progress = new WebInspector.Progress();
scope.performSearch(searchConfig, progress, searchResultCallback, searchFinishedCallback);

Powered by Google App Engine
This is Rietveld 408576698