tor-browser

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

overflow-clip-margin-003-ref.html (499B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>Verifies overflow-clip-margin doesn't impact paint effects</title>
      4 <link rel="help" href="https://www.w3.org/TR/css-overflow-3/#propdef-overflow-clip-margin">
      5 <link rel="author" title="Scott Violet" href="mailto:sky@chromium.org">
      6 <style>
      7  .parent {
      8      width: 100px;
      9      height: 100px;
     10      background-color: green;
     11      box-shadow: 20px 20px 5px red;
     12  }
     13 </style>
     14 <p>You should see a green box with a red box shadow.
     15 <div class="parent"></div>