tor-browser

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

run-in-clear-001.xht (1152B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3  <head>
      4   <title>CSS Test: Run in - clear on a run-in should apply to the block it runs into</title>
      5   <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/>
      6   <link rel="reviewer" title="Microsoft" href="http://www.microsoft.com/" />
      7   <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#flow-control"/>
      8   <link rel="match" href="run-in-text-ref.xht"/>
      9   <meta name="assert"
     10         content="Tests that clear on run-ins applies to their block."/>
     11   <style type="text/css"><![CDATA[
     12     div { display: block; }
     13     .bold { font-weight: bold; float: left }
     14     #target { border: 2px solid black; }
     15     .run-in { display: run-in; clear: both; }
     16   ]]></style>
     17  </head>
     18  <body>
     19    <div class="bold">Run-in header</div>
     20    <div class="run-in">Some </div>
     21    <div>text.</div>
     22    <div id="target">Start of block.  The run-in header should NOT be inside the
     23     border around this block; it should be on a line by itself before the line
     24     containing "Some text".</div>
     25  </body>
     26 </html>