Upstream version 5.34.92.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / text / international / text-overflow-ellipsis-bidi.html
1 <!DOCTYPE html>
2 <html>
3     <head>
4         <style>
5             span {
6                 display: inline-block;
7                 font: menu;
8                 text-overflow: ellipsis;
9                 overflow: hidden;
10                 background: pink;
11                 position: absolute;
12                 top: 100px;
13             }
14         </style>
15     </head>
16     <body>
17         <p>
18             Test that text directionality is taken into account when
19             sizing inlines with text-overflow ellipsis. None of the
20             boxes below should have ellipsis.
21         </p>
22         <span>&#x0627;&#x0628; &#x0627;&#x0628;</span>
23         <span>&#x0627;&#x0628;(&#x0627;&#x0628;)</span>
24         <span>AB&#x0627;&#x0628;|&#x0627;&#x0628;|CD</span>
25         <span>(&#x0627;&#x0628;)(&#x0627;&#x0628;)</span>
26     </body>
27 </html>