tor-browser

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

image-orientation-border-image.html (633B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Images Module Level 3: image-orientation does apply to border images</title>
      4 <link rel="author" title="Cameron McCormack" href="mailto:cam@mcc.id.au">
      5 <link rel="help" href="https://drafts.csswg.org/css-images-3/#propdef-image-orientation">
      6 <link rel="match" href="reference/image-orientation-border-image-ref.html">
      7 <meta name="fuzzy" content="0-16;0-80">
      8 <style>
      9 div {
     10  width: 100px;
     11  height: 50px;
     12  border: 10px solid black;
     13  border-image: url(support/exif-orientation-2-ur.jpg) 10;
     14 }
     15 .no-orient { image-orientation: none; }
     16 </style>
     17 <div></div>
     18 <div class="no-orient"></div>