tor-browser

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

run-in-clear-002.xht (1667B)


      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="flags" content="dom" />
     10   <meta name="assert"
     11         content="Tests that dynamically set clear on run-ins applies to their block."/>
     12   <style type="text/css"><![CDATA[
     13     div { display: block; }
     14     .bold { font-weight: bold; float: left }
     15     #target { border: 2px solid black; }
     16     .run-in { display: run-in; }
     17     .clear { clear: both; }
     18   ]]></style>
     19   <script type="text/javascript"><![CDATA[
     20     function flushLayout(elt) {
     21       elt.offsetWidth; /* Just undefined on non-elements, but that's ok */
     22       for (var i = 0; i < elt.childNodes.length; ++i) {
     23         flushLayout(elt.childNodes[i]);
     24       }
     25     }
     26     window.onload = function() {
     27       flushLayout(document.documentElement);
     28       var r = document.getElementById("r");
     29       r.className = "run-in clear";
     30     }
     31   ]]></script>
     32  </head>
     33  <body>
     34    <div class="bold">Run-in header</div>
     35    <div id="r" class="run-in">Some </div>
     36    <div>text.</div>
     37    <div id="target">Start of block.  The run-in header should NOT be inside the
     38     border around this block; it should be on a line by itself before the line
     39     containing "Some text".</div>
     40  </body>
     41 </html>