OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <!-- An absolute-positioned inline element, with no leading text, should still o
bey the alignment of its parent block. | 3 <!-- An absolute-positioned inline element, with no leading text, should still o
bey the alignment of its parent block. |
4 'Hello World, And Stuff!' should be aligned 150 pixels to the left of the ce
nter. | 4 'Hello World, And Stuff!' should be aligned 150 pixels to the left of the ce
nter. |
5 https://bugs.webkit.org/show_bug.cgi?id=4860--> | 5 https://bugs.webkit.org/show_bug.cgi?id=4860--> |
6 </head> | 6 </head> |
7 <body style="width: 800px;"> | 7 <body style="width: 800px; overflow: hidden;"> |
8 | 8 |
9 <div align="center" style="direction: rtl;"> | 9 <div align="center" style="direction: rtl;"> |
10 <font style="font-size:24px; font-variant:small-caps;letter-spacing:2px; positio
n:absolute; bottom:10px;">RTL-Center-Aligned</font> | 10 <font style="font-size:24px; font-variant:small-caps;letter-spacing:2px; positio
n:absolute; bottom:10px;">RTL-Center-Aligned</font> |
11 </div> | 11 </div> |
12 | 12 |
13 <div align="left" style="direction: rtl;"> | 13 <div align="left" style="direction: rtl;"> |
14 <font style="font-size:24px; font-variant:small-caps;letter-spacing:2px; positio
n:absolute; bottom:50px;">RTL-Left-Aligned</font> | 14 <font style="font-size:24px; font-variant:small-caps;letter-spacing:2px; positio
n:absolute; bottom:50px;">RTL-Left-Aligned</font> |
15 </div> | 15 </div> |
16 | 16 |
17 <div align="right" style="direction: rtl;"> | 17 <div align="right" style="direction: rtl;"> |
(...skipping 13 matching lines...) Expand all Loading... |
31 </div> | 31 </div> |
32 | 32 |
33 <div align="right" style="direction: ltr;"> | 33 <div align="right" style="direction: ltr;"> |
34 <font style="font-size:24px; font-variant:small-caps;letter-spacing:2px; positio
n:absolute; bottom:300px;">LTR-Right-Aligned</font> | 34 <font style="font-size:24px; font-variant:small-caps;letter-spacing:2px; positio
n:absolute; bottom:300px;">LTR-Right-Aligned</font> |
35 </div> | 35 </div> |
36 | 36 |
37 <div style="direction: ltr;"> | 37 <div style="direction: ltr;"> |
38 <font style="font-size:24px; font-variant:small-caps;letter-spacing:2px; positio
n:absolute; bottom:350px;">LTR-No-Aligned</font> | 38 <font style="font-size:24px; font-variant:small-caps;letter-spacing:2px; positio
n:absolute; bottom:350px;">LTR-No-Aligned</font> |
39 </div> | 39 </div> |
40 | 40 |
41 </body></html> | 41 </body></html> |
OLD | NEW |