| 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";
|
|
|