Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / text-overflow-ellipsis-vertical.html
blob2a5bf979b56e431074d9da98d367bd7c97b0c8c3
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .testDiv {
6 overflow: hidden;
7 text-overflow: ellipsis;
8 font-size: 72px;
9 /* The height should be a little larger than logical width of Ahem character "Bl". */
10 height: 150px;
11 -webkit-writing-mode: vertical-rl;
13 </style>
14 </head>
15 <body>
16 <!-- We should use Ahem because the character "i" should be overflowed on all platforms. -->
17 <div class="testDiv"><span style="font-family: Ahem">Bl</span>ink</div>
18 </body>
19 </html>