Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/compositing/overflow/empty-composited-child-of-border-radius-ancestor.html |
| diff --git a/third_party/WebKit/LayoutTests/compositing/overflow/empty-composited-child-of-border-radius-ancestor.html b/third_party/WebKit/LayoutTests/compositing/overflow/empty-composited-child-of-border-radius-ancestor.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..786c5ed46f41d064643dfb878985896c7fc603a5 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/compositing/overflow/empty-composited-child-of-border-radius-ancestor.html |
| @@ -0,0 +1,24 @@ |
| +<style> |
| +.outermost { |
| + border: 4px solid #000; |
| + border-radius: 40px; |
| + width: 200px; |
| + height: 200px; |
| + overflow: hidden; |
| +} |
| + |
| +.inner { |
| + width: 200px; |
| + height: 200px; |
| + position: relative; |
| + left: 50px; |
| + top: 50px; |
| + will-change: transform; |
| +} |
| +</style> |
| + |
| +<div class="outermost"> |
| + <div class="inner"> |
| + </div> |
| +</div> |
| + |