image-orientation-mask-image.html (669B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Images Module Level 3: image-orientation does not apply to mask-image</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-mask-image-ref.html"> 7 <meta name="fuzzy" content="maxDifference=0-2; totalPixels=0-27"> 8 <style> 9 div { 10 width: 100px; 11 height: 50px; 12 background: blue; 13 mask-image: url(support/exif-orientation-2-ur.jpg); 14 mask-mode: luminance; 15 } 16 .no-orient { image-orientation: none; } 17 </style> 18 <div></div> 19 <div class="no-orient"></div>