| Index: third_party/WebKit/LayoutTests/compositing/nested-border-radius-composited-child.html
|
| diff --git a/third_party/WebKit/LayoutTests/compositing/nested-border-radius-composited-child.html b/third_party/WebKit/LayoutTests/compositing/nested-border-radius-composited-child.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0128d18178790809008c219e28eed23043bbde8e
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/compositing/nested-border-radius-composited-child.html
|
| @@ -0,0 +1,30 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<style>
|
| + .outer {
|
| + overflow:hidden;
|
| + border-radius: 1px;
|
| + display:flex;
|
| + backface-visibility: hidden;
|
| + }
|
| + #child-overflow {
|
| + border-radius: 5px;
|
| + overflow:hidden;
|
| + background-color: lightblue;
|
| + width: 100px;
|
| + height: 40px;
|
| + z-index:1
|
| + }
|
| + #sibling {
|
| + background-color: green;
|
| + width: 100px;
|
| + height: 40px;
|
| + z-index:1
|
| + }
|
| +</style>
|
| +</head>
|
| +<div class="outer">
|
| + <div id="child-overflow"></div>
|
| + <div id="sibling"></div>
|
| +</div>
|
|
|