tor-browser

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

fieldset-painting-order-ref.html (285B)


      1 <!doctype html>
      2 <title>Reference for fieldset painting order</title>
      3 <style>
      4 div { width: 200px; height: 200px; }
      5 #a { background: green; }
      6 #b { background: lime; position: relative; top: -100px; left: 100px; }
      7 </style>
      8 <p>There should be no red.</p>
      9 <div id=a></div>
     10 <div id=b></div>