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