Index: third_party/WebKit/LayoutTests/compositing/overflow/clip-parent-of-non-scrolled-expected.html |
diff --git a/third_party/WebKit/LayoutTests/compositing/overflow/clip-parent-of-non-scrolled-expected.html b/third_party/WebKit/LayoutTests/compositing/overflow/clip-parent-of-non-scrolled-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3b589993d512c6193272f0ec2ffaf7dd681a5408 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/compositing/overflow/clip-parent-of-non-scrolled-expected.html |
@@ -0,0 +1,20 @@ |
+<!DOCTYPE html> |
+<style> |
+#escaped-clip { |
+ width: 100px; |
+ height: 100px; |
+ opacity: 0.5; |
+} |
+ |
+#escaping-child { |
+ position: absolute; |
+ width: 100px; |
+ height: 100px; |
+ background: green; |
+ transform: translate3d(50px, 50px, 0); |
+} |
+</style> |
+<div id="escaped-clip"> |
+ <div id="escaping-child"></div> |
+</div> |
+The test succeeds if a green box of 100x100 instead of 50x50 can be seen. |