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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/search/sources-search-scope.html

Issue 2692923013: DevTools: do not search in anonymous scripts unless specifically asked for. (Closed)
Patch Set: address comments Created 3 years, 10 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector/search/sources-search-scope-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/inspector/search/sources-search-scope.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/search/sources-search-scope.html b/third_party/WebKit/LayoutTests/http/tests/inspector/search/sources-search-scope.html
index 97077f3d00fc24904c3deff24b87aee64a9c1c20..658c791c626641692c4120083b2bba3bd36e3857 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/search/sources-search-scope.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/search/sources-search-scope.html
@@ -20,13 +20,22 @@ function test()
function step2()
{
InspectorTest.runTestSuite([
+ function testIgnoreCaseAndIgnoreDynamicScript(next)
+ {
+ var query = "searchTest" + "UniqueString";
+ var searchConfig = new Workspace.SearchConfig(query, true, false);
+ InspectorTest.runSearchAndDumpResults(scope, searchConfig, next);
+ },
+
function testIgnoreCase(next)
{
+ Common.settingForTest('searchInAnonymousAndContentScripts').set(true);
var query = "searchTest" + "UniqueString";
var searchConfig = new Workspace.SearchConfig(query, true, false);
InspectorTest.runSearchAndDumpResults(scope, searchConfig, next);
},
+
function testCaseSensitive(next)
{
var query = "searchTest" + "UniqueString";
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector/search/sources-search-scope-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698