Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / complex-text-rtl-selection-repaint.html
blob06b56c290629051b8e6f844e0806a875e87cb061
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>RTL Selection repaint test for complex text</title>
5 </head>
6 <body>
7 <!-- The &#x0300; forces complext text rendering -->
8 <bdo dir="rtl">m&#x0300;uspimeroL</bdo>
9 <p>
10 Tests that rtl selections are repainted correctly for complex text.
11 </p>
12 <script>
13 var el = document.getElementsByTagName('bdo')[0];
14 var text = el.firstChild;
15 window.getSelection().setBaseAndExtent(text, 2, text, 6);
16 </script>
17 </body>
18 </html>