tor-browser

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

delete-inline-in-blocks-end-001.xht (1853B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      2 
      3 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
      4 
      5  <head>
      6 
      7   <title>CSS Test: Delete an inline-level element inside a block whose children are otherwise all block-level, located at its end</title>
      8 
      9   <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
     10   <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" title="9.2.1.1 Anonymous block boxes" />
     11   <link rel="match" href="delete-inline-in-blocks-beginning-001-ref.xht" />
     12 
     13   <meta http-equiv="Content-Script-Type" content="text/javascript" />
     14   <meta content="ahem dom" name="flags" />
     15 
     16   <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
     17   <style type="text/css"><![CDATA[
     18   div.container
     19   {
     20   background-color: fuchsia;
     21   color: black;
     22   font: 20px/1 Ahem;
     23   margin: 1em;
     24   }
     25 
     26   div > div {margin: 1em 0em;}
     27 
     28   span#target-node-to-delete
     29   {
     30   border-left: yellow solid 0.5em;
     31   border-right: yellow solid 0.5em;
     32   }
     33   ]]></style>
     34 
     35   <script type="text/javascript"><![CDATA[
     36   function deleteAnInlineAtEnd()
     37   {
     38   document.body.offsetHeight;
     39 
     40   document.getElementsByClassName("container")[0].removeChild(document.getElementById("target-node-to-delete"));
     41 
     42   document.documentElement.className = "";
     43   }
     44   ]]></script>
     45 
     46  </head>
     47 
     48  <body onload="deleteAnInlineAtEnd();">
     49 
     50   <p>Test passes if the 2 colorized rectangles are <strong>identical</strong>.</p>
     51 
     52   <div class="container">
     53     <div>First block</div>
     54     Anonymous second block
     55     <div>Third block</div>
     56     <span id="target-node-to-delete">Span to remove</span>
     57   </div>
     58 
     59   <div class="container">
     60     <div>First block</div>
     61     Anonymous second block
     62     <div>Third block</div>
     63   </div>
     64 
     65  </body>
     66 </html>