13 <!-- Mix-blend-mode should not create a composited layer -->
14 <div style=
"background-color: green">
15 <div style=
"background-color: blue; mix-blend-mode: multiply"></div>
18 <!-- Mix-blend-mode should create a composited layer when having composited descendants-->
19 <div style=
"background-color: green">
20 <div style=
"background-color: blue; mix-blend-mode: multiply">
21 <div style=
"background-color: yellow; transform: translatez(0);"></div>
25 <pre id=
"layers">Layer tree appears here in DRT.
</pre>
27 <script type=
"text/javascript">
28 if (window
.testRunner
) {
29 window
.testRunner
.dumpAsText();
30 document
.getElementById('layers').innerHTML
= window
.internals
.layerTreeAsText(document
);