tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

text-indent-vlr-015.xht (1537B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/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: ltr' in 'vertical-lr' writing-mode (non-orthogonal)</title>
      8 
      9   <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
     10   <link rel="help" href="http://www.w3.org/TR/css-writing-modes-3/#logical-direction-layout" title="7.4 Flow-Relative Mappings" />
     11   <link rel="match" href="text-indent-vlr-011-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." name="assert" />
     15 
     16   <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     17   <style type="text/css"><![CDATA[
     18   html
     19     {
     20       writing-mode: vertical-lr;
     21     }
     22 
     23   div#containing-block
     24     {
     25       color: green;
     26       font: 80px/1 Ahem; /* computes to 80px/80px */
     27       height: 320px;
     28       width: 160px;
     29     }
     30 
     31   div#containing-block
     32     {
     33       background: red url("support/bg-red-1col-2row-320x320.png");
     34       direction: ltr;
     35     }
     36 
     37   div#child
     38     {
     39       text-indent: 25%;
     40     }
     41   ]]></style>
     42  </head>
     43 
     44  <body>
     45 
     46   <p><img src="support/pass-cdts-abs-pos-non-replaced.png" width="246" height="36" alt="Image download support must be enabled" /></p>
     47 
     48   <div id="containing-block">
     49     <div id="child">A</div>
     50   </div>
     51 
     52  </body>
     53 </html>