summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform/scaled-blend-mode.html
blob: 100be8126aa673aa733e0aedef7f9bb001d01a38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<head>
  <style>
    body { margin: 0px; }
    div {
      width: 200px;
      height: 200px;
    }
    #scale {
      transform: scale(2);
      transform-origin: top left;
    }
    #blend {
      mix-blend-mode: multiply;
    }
  </style>
</head>
<body>
  <div id="scale">
    <div id="blend">
      Hello
    </div>
  </div>
</body>
</html>