| Index: LayoutTests/css3/compositing/isolation-isolate-blended-child-expected.html
|
| diff --git a/LayoutTests/css3/compositing/isolation-isolate-blended-child-expected.html b/LayoutTests/css3/compositing/isolation-isolate-blended-child-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3de238cd5df028ba8116634af4f3031cf53f810a
|
| --- /dev/null
|
| +++ b/LayoutTests/css3/compositing/isolation-isolate-blended-child-expected.html
|
| @@ -0,0 +1,34 @@
|
| +<!DOCTYPE HTML>
|
| +<html>
|
| +<head>
|
| +<style>
|
| + div {
|
| + margin: 20px;
|
| + width: 130px;
|
| + height: 130px;
|
| + }
|
| +
|
| + .parent {
|
| + background: rgb(55, 55, 55);
|
| + position: fixed;
|
| + width: 300px;
|
| + height: 300px;
|
| + }
|
| +
|
| + .isolator {
|
| + position: fixed;
|
| + z-index: 0;
|
| + background: violet;
|
| + }
|
| +
|
| + .child {
|
| + margin-top: 0px;
|
| + mix-blend-mode: multiply;
|
| + background: olive;
|
| + }
|
| +
|
| +</style>
|
| +<body>
|
| + <div class="parent"><div class="isolator"><div class="child"></div></div></div>
|
| +</body>
|
| +</html>
|
|
|