tor-browser

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

overflow-clip-margin-008.html (642B)


      1 <!doctype html>
      2 <html class="reftest">
      3 <meta charset="utf-8">
      4 <title>Overflow-clip-margin has no effect with overflow:scroll and paint containment </title>
      5 <link rel="help" href="https://www.w3.org/TR/css-overflow-3/#propdef-overflow-clip-margin">
      6 <link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
      7 <link rel="match" href="overflow-clip-margin-008-ref.html">
      8 <style>
      9 .container {
     10  width: 100px;
     11  height: 100px;
     12  overflow-clip-margin: 20px;
     13  contain: paint;
     14  overflow: scroll;
     15 }
     16 .child {
     17  width: 200px;
     18  height: 200px;
     19  background: lightblue;
     20 }
     21 </style>
     22 <div class=container>
     23  <div class=child></div>
     24 </div>