upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / editing / execCommand / findString.html
1 <script>
2 if (window.layoutTestController)
3      layoutTestController.dumpEditingCallbacks();
4 </script>
5 <p>In the block below, the second 'bar ' should be selected.</p>
6 <div style="border: 1px solid black; width:50px;">foo bar <span>bar</span> baz</div>
7
8 <script>
9 document.execCommand("FindString", false, "bar ");
10 document.execCommand("FindString", false, "bar ");
11 document.execCommand("FindString", false, "bar ");
12 </script>