Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / international / hebrew-selection-expected.html
blob51ae1374af4b18ddd6f99d54268355ea6cc4b27f
1 <!DOCTYPE html>
2 <html>
3 <body>
5 <!-- To calculate width of composed glyph -->
6 <div style="font-size:500%">
7 <span id="reference">&#x5e9;&#x5b0;</span>
8 </div>
10 <p>U+05e9 U+05b0 of following text should be selected.</p>
11 <div style="font-size:500%">
12 <span id="target">&#x5e1;&#x5b0;&#x5e9;&#x5b0;</span>
13 </div>
15 <script>
16 var target = document.getElementById("target");
17 var text = target.firstChild;
18 window.getSelection().setBaseAndExtent(text, 2, text, 4);
19 target.focus();
20 </script>
21 </body>
22 </html>