Upstream version 9.38.198.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                 border: 1px solid white;
14             }
15         </style>
16     </head>
17     <body>
18         <p>
19             Test that text directionality is taken into account when
20             sizing inlines with text-overflow ellipsis. None of the
21             boxes below should have ellipsis.
22         </p>
23         <span>&#x0627;&#x0628; &#x0627;&#x0628;</span>
24         <span>&#x0627;&#x0628;(&#x0627;&#x0628;)</span>
25         <span>AB&#x0627;&#x0628;|&#x0627;&#x0628;|CD</span>
26         <span>(&#x0627;&#x0628;)(&#x0627;&#x0628;)</span>
27     </body>
28 </html>