tor-browser

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

run-in-relpos-between-001.xht (1243B)


      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 - rel pos inline should prevent running in</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#run-in"/>
      8   <link rel="match" href="run-in-text-ref.xht"/>
      9   <meta name="assert"
     10         content="Tests that run-ins don't run in if there's a rel pos inline
     11                  between them and the block."/>
     12   <style type="text/css"><![CDATA[
     13     div { display: block; }
     14     .run-in { display: run-in; font-weight: bold }
     15     #target { border: 2px solid black; }
     16     .outer { position: relative; top: 50px; }
     17     .inner { position: relative; top: -50px; }
     18   ]]></style>
     19  </head>
     20  <body>
     21    <div class="run-in">Run-in header</div>
     22    <span class="outer"><span class="inner">Some text.</span></span>
     23    <div id="target">Start of block.  The run-in header should NOT be inside the border around this block; it should be on a line by itself before the line containing "Some text".</div>
     24  </body>
     25 </html>