OLD | NEW |
(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> |
OLD | NEW |