| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> |
| 2 |
| 3 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 4 |
| 5 <head> |
| 6 |
| 7 <title>CSS Writing Modes Test: 'text-indent' with percentage unit, 'direction:
rtl' in 'vertical-rl' writing-mode (non-orthogonal)</title> |
| 8 |
| 9 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserB
ugsSection/css21testsuite/" /> |
| 10 <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#logical-direc
tion-layout" title="7.4 Flow-Relative Mappings" /> |
| 11 <link rel="match" href="text-indent-vrl-012-ref.xht" /> |
| 12 |
| 13 <meta content="ahem image" name="flags" /> |
| 14 <meta content="This test checks that 'text-indent' set with a percentage unit
will be a percentage of the containing block height. 'text-indent' will indent t
he first line of text at line-start. Text of a line box in 'direction: rtl' and
with 'writing-mode: vertical-rl' starts at bottom toward the top and progress to
ward the top." name="assert" /> |
| 15 |
| 16 <style type="text/css"><![CDATA[ |
| 17 html |
| 18 { |
| 19 -webkit-writing-mode: vertical-rl; |
| 20 } |
| 21 |
| 22 div#containing-block |
| 23 { |
| 24 color: green; |
| 25 font: 5em/1 Ahem; /* computes to 80px/80px */ |
| 26 height: 320px; |
| 27 width: 160px; |
| 28 } |
| 29 |
| 30 div#containing-block |
| 31 { |
| 32 background: red url("support/bg-red-4col-3row-320x320.png") top right; |
| 33 direction: rtl; |
| 34 } |
| 35 |
| 36 div#child |
| 37 { |
| 38 text-indent: 25%; |
| 39 } |
| 40 ]]></style> |
| 41 </head> |
| 42 |
| 43 <body> |
| 44 |
| 45 <p><img src="support/pass-cdts-abs-pos-non-replaced.png" width="246" height="3
6" alt="Image download support must be enabled" /></p> |
| 46 |
| 47 <div id="containing-block"> |
| 48 <div id="child">A</div> |
| 49 </div> |
| 50 |
| 51 </body> |
| 52 </html> |
| OLD | NEW |