Switch TestFrameNavigationObserver to DidCommitProvisionalLoadForFrame.
[chromium-blink-merge.git] / chrome / test / data / find_in_page / select_changes_ordinal.html
blob6d95248e0dd22f15108b930ac665867b9c1dddcb
1 <html>
2 <head>
3 <script>
4 function selectLink1() {
5 var selection = window.getSelection();
6 var range = document.createRange();
7 range.setStartBefore(document.getElementById('link1'));
8 range.setEndAfter(document.getElementById('link1'));
9 selection.addRange(range);
10 return "";
12 </script>
13 </head>
14 <body>
15 google has many links on google.
16 here is a <a id="link1" href="http://www.google.com">link</a>
17 to <a id="link2" href="http://www.google.com">google</a>, where
18 you will find google.
20 <br><br><br>
21 <div id="log"><div>
22 </body>
23 </html>