tor-browser

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

overflow-body-propagation-007.html (782B)


      1 <!doctype html>
      2 <html><head>
      3 <meta charset="utf-8">
      4 <title>CSS Test: overflow-x:clip propagated from BODY</title>
      5 <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1635473">
      6 <link rel="help" href="https://drafts.csswg.org/css-overflow/#overflow-propagation">
      7 <link rel="match" href="overflow-body-propagation-007-ref.html">
      8 <style>
      9  body {
     10    overflow-x: clip;
     11    width: 30px;
     12    height: 30px;
     13    padding: 10px;
     14    margin-left: 100px;
     15    margin-top: 100px;
     16  }
     17 
     18  div {
     19    position: relative;
     20    top: -20px;
     21    left: -40px;
     22    background: blue;
     23    height: 10000px;
     24    width: 10000px;
     25    border-right-width: 20px;
     26    border-right-style: solid;
     27    border-right-color: red;
     28  }
     29 </style></head>
     30 <body><div></div></body>
     31 </html>