tor-browser

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

border-image-width.html (619B)


      1 <!DOCTYPE html>
      2 <title>CSS zoom applies to border-image-width when specified and inherited</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-viewport/">
      4 <link rel="match" href="border-image-width-ref.html">
      5 <style>
      6 .box {
      7  width: 60px;
      8  height: 60px;
      9  border-image: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100' height='100' fill='red'/%3e%3c/svg%3e") 30;
     10  border-image-width: 8px;
     11  margin: 10px;
     12 }
     13 .zoom {
     14  zoom: 2;
     15 }
     16 </style>
     17 
     18 <div class="box"></div>
     19 
     20 <div class="zoom">
     21  <div class="box"></div>
     22 </div>
     23 
     24 <div class="zoom box"></div>