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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/search/search-ignore-binary-files.html

Issue 2564733002: DevTools: [Search] do not search inside binary files. (Closed)
Patch Set: Created 4 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script src="../inspector-test.js"></script>
4 <script src="../debugger-test.js"></script>
5 <script src="./search-test.js"></script>
6 <script>
7
8 function test()
9 {
10 InspectorTest.waitForScriptSource("pink.jpg", doSearch);
11
12 function doSearch(next)
13 {
14 var scope = new Sources.SourcesSearchScope();
15 var searchConfig = new Workspace.SearchConfig("AAAAAAA", true, false);
16 InspectorTest.runSearchAndDumpResults(scope, searchConfig, true, Inspect orTest.completeTest.bind(InspectorTest));
17 }
18 };
19 </script>
20 </head>
21 <body onload="runTest()">
22 <p>Verify that search doesn't search in binary resources.</p>
23 <img src="./resources/pink.jpg"></img>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698