Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / inspector / search / source-frame-replace-3.html
blob1ca773e7d9b0f3b66db1f3f03c30616e557bb7d1
1 <html>
2 <head>
3 <script src="../inspector-test.js"></script>
4 <script src="../debugger-test.js"></script>
5 <script src="../sources-test.js"></script>
6 <script src="./search-test.js"></script>
7 <script src="resources/search.js"></script>
8 <script>
9 function test()
12 WebInspector.SourcesPanel.show();
13 InspectorTest.showScriptSource("search.js", didShowScriptSource);
15 function didShowScriptSource(sourceFrame)
17 var searchConfig = new WebInspector.SearchableView.SearchConfig("(REPLACE)ME[38]", true, true);
18 InspectorTest.replaceAndDumpChange(sourceFrame, searchConfig, "$1D", false);
20 var searchConfig = new WebInspector.SearchableView.SearchConfig("(REPLACE)ME[45]", true, true);
21 InspectorTest.replaceAndDumpChange(sourceFrame, searchConfig, "$1D", true);
23 InspectorTest.completeTest();
26 </script>
27 </head>
28 <body onload="runTest()">
29 <p>Tests different types of search-and-replace in SourceFrame</p>
30 </body>
31 </html>