tor-browser

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

run-in-restyle-003.xht (1557B)


      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 - should run in when following inline becomes a block</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-basic-ref.xht"/>
      9   <meta name="flags" content="dom" />
     10   <meta name="assert"
     11         content="Tests that run-ins run in when the inline after them becomes a 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     .block { display: block; }
     17   ]]></style>
     18   <script type="text/javascript"><![CDATA[
     19     function flushLayout(elt) {
     20       elt.offsetWidth; /* Just undefined on non-elements, but that's ok */
     21       for (var i = 0; i < elt.childNodes.length; ++i) {
     22         flushLayout(elt.childNodes[i]);
     23       }
     24     }
     25     window.onload = function() {
     26       flushLayout(document.documentElement);
     27       document.getElementById("target").className = "block";
     28     }
     29   ]]></script>
     30  </head>
     31  <body>
     32    <div class="run-in">Run-in header</div>
     33    <span id="target">Start of block.
     34     The run-in header should be inside the border around this block and there
     35     should be no space between the word "header" and the word "Start".</span>
     36  </body>
     37 </html>