8 background-color: green;
14 border:
5px solid red;
19 background-color: blue;
25 function applyBlendMode() {
26 document
.getElementById("child").style
["mix-blend-mode"] = "multiply";
30 <body onload=
"applyBlendMode()">
31 <p>Test that mix-blend-mode multiply set from javascript on an element
<br />
32 having opacity uses the backdrop limited to its stacking context.
</p>
33 <p>This test passes if you can see a blue square with black border.
</p>
34 <div class=
"container">
36 <div id=
"child"></div>