tor-browser

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

run-in-contains-block-005.xht (1617B)


      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 - child dynamically toggled to inline display should allow 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-basic-ref.xht"/>
      9   <meta name="flags" content="dom" />
     10   <meta name="assert"
     11         content="Tests that run-ins run in if they have a child
     12                  dynamically toggled to inline display."/>
     13   <style type="text/css"><![CDATA[
     14     div { display: block; }
     15     .run-in { display: run-in; font-weight: bold }
     16     #target { border: 2px solid black; }
     17     .inline { display: inline; }
     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       document.getElementById("r").className = "inline";
     29     }
     30   ]]></script>
     31  </head>
     32  <body>
     33    <div class="run-in">Run-in header<div id="r"></div></div>
     34    <div id="target">Start of block. The run-in header should be inside the
     35    border around this block and there should be no space between the word
     36    "header" and the word "Start".</div>
     37  </body>
     38 </html>