tor-browser

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

border-image-repeat-space-8.html (1097B)


      1 <!doctype html>
      2 <html>
      3 <title>CSS Border Image: border-image-repeat:space with non-initial border-image-width</title>
      4 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
      5 <link rel="help" href="https://www.w3.org/TR/css3-background/#the-border-image-repeat">
      6 <link rel="match" href="border-image-repeat-space-8-ref.html">
      7 <meta name="assert" content="An explicit 'border-image-width' which is exactly the same size as 'border-width' should render the same as 'border-image-width:1' (the initial value).">
      8 <meta name="fuzzy" content="maxDifference=0-110; totalPixels=0-10540" />
      9 
     10 <style>
     11  div {
     12    border: 27px solid;
     13    border-image: url("support/border.png") 27 space;
     14    border-image-width: 27px;
     15  }
     16 </style>
     17 
     18 <div style="width: 505px; height: 50px"></div>
     19 <div style="width: 475px; height: 0px"></div>
     20 <div style="width: 475px; height: 1px"></div>
     21 <div style="width: 26px; height: 26px"></div>
     22 <div style="width: 53px; height: 53px"></div>
     23 <div style="width: 55px; height: 55px"></div>
     24 <div style="width: 505px; height: 50px; writing-mode: vertical-rl"></div>
     25 
     26 </html>