Index: third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent.html |
diff --git a/third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent.html b/third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..eefec6d63924d3b2deff1e0da14c081f7964c70c |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/compositing/clip-path-with-composited-descendent.html |
@@ -0,0 +1,22 @@ |
+<!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; |
+} |
+#child { |
+ background: #222; |
+ width: 64px; |
+ height: 64px; |
+ will-change: transform; |
+} |
+</style> |
+ |
+<div id="parent"> |
+ <div id="child"></div> |
+</div> |