| Index: third_party/WebKit/LayoutTests/http/tests/inspector/search/search-ignore-binary-files.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/search/search-ignore-binary-files.html b/third_party/WebKit/LayoutTests/http/tests/inspector/search/search-ignore-binary-files.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5aeebce47ceef9d4f2b9d233b3bb5406544aff4b
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/search/search-ignore-binary-files.html
|
| @@ -0,0 +1,25 @@
|
| +<html>
|
| +<head>
|
| +<script src="../inspector-test.js"></script>
|
| +<script src="../debugger-test.js"></script>
|
| +<script src="./search-test.js"></script>
|
| +<script>
|
| +
|
| +function test()
|
| +{
|
| + InspectorTest.waitForScriptSource("pink.jpg", doSearch);
|
| +
|
| + function doSearch(next)
|
| + {
|
| + var scope = new Sources.SourcesSearchScope();
|
| + var searchConfig = new Workspace.SearchConfig("AAAAAAA", true, false);
|
| + InspectorTest.runSearchAndDumpResults(scope, searchConfig, true, InspectorTest.completeTest.bind(InspectorTest));
|
| + }
|
| +};
|
| +</script>
|
| +</head>
|
| +<body onload="runTest()">
|
| +<p>Verify that search doesn't search in binary resources.</p>
|
| +<img src="./resources/pink.jpg"></img>
|
| +</body>
|
| +</html>
|
|
|