| Index: third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent-expected.html
|
| diff --git a/third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent-expected.html b/third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e28e7c3256aa4b1c3fa976769403896a90dd20c0
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent-expected.html
|
| @@ -0,0 +1,23 @@
|
| +<!DOCTYPE html>
|
| +
|
| +<style type="text/css" media="screen">
|
| +#parent {
|
| + position: absolute;
|
| + height: 256px;
|
| + width: 256px;
|
| + -webkit-clip-path: circle(128px at center);
|
| + clip-path: circle(128px at center);
|
| + background: #eee;
|
| + will-change: transform;
|
| +}
|
| +#child {
|
| + background: #222;
|
| + width: 64px;
|
| + height: 64px;
|
| + will-change: transform;
|
| +}
|
| +</style>
|
| +
|
| +<div id="parent">
|
| + <div id="child"></div>
|
| +</div>
|
|
|