tor-browser

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

block-in-inline-first-line-002.html (549B)


      1 <!DOCTYPE html>
      2 <meta name="assert" content="Test if `text-indent` handles block-in-inline correctly">
      3 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" />
      4 <link rel="match" href="block-in-inline-first-line-002-ref.html"/>
      5 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org" />
      6 <style>
      7 section {
      8  width: 10ch;
      9 }
     10 .indent {
     11  text-indent: 5ch;
     12 }
     13 </style>
     14 <body>
     15  <section class="indent">
     16    <span>
     17      123 456789
     18      <div>123 456789</div>
     19      123 456789
     20    </span>
     21  </section>
     22 </body>