tor-browser

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

static-inside-table-cell.html (851B)


      1 <!DOCTYPE html>
      2 <title>Static position inside table cell</title>
      3 <link rel="author" title="Aleks Totic" href="atotic@chromium.org">
      4 <link rel="help" href="https://www.w3.org/TR/CSS22/visudet.html#abs-non-replaced-width" title="10.3.7 Absolutely positioned, non-replaced elements">
      5 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
      6 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      7 <div id="container" style="position:relative;">
      8  <div id="changeMe" style="height:100px;"></div>
      9  <div style="display:table-cell;">
     10    <div style="position:absolute; width:100px; height:100px; background:green;"></div>
     11    <div style="width:100px; height:100px; background:red;"></div>
     12  </div>
     13 </div>
     14 <script>
     15  document.body.offsetTop;
     16  document.querySelector('#changeMe').style.height = "auto";
     17 </script>