Index: third_party/WebKit/LayoutTests/compositing/resources/composited-iframe-hidden-2.html |
diff --git a/third_party/WebKit/LayoutTests/compositing/resources/composited-iframe-hidden-2.html b/third_party/WebKit/LayoutTests/compositing/resources/composited-iframe-hidden-2.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d74957e701619126e5e4400b87792cbacd9be988 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/compositing/resources/composited-iframe-hidden-2.html |
@@ -0,0 +1,26 @@ |
+<!DOCTYPE html> |
+<style> |
+.animatedBackground { |
+ width: 70px; |
+ height: 80px; |
+ position: absolute; |
+ background: url("./shine.png") no-repeat 0 0 transparent; |
+ background-color: red; |
+ animation: shineSmall 4s steps(6) infinite |
chrishtr
2016/01/21 22:49:18
Instead of an animated image, how about an infinit
wkorman
2016/01/22 00:19:56
Assert failure does not repro with a rotating squa
|
+} |
+ |
+.transformedItem { |
+ transform: translate3d(42px, 43px, 0); |
+ width: 40px; |
+ height: 50px; |
+ background-color: green; |
+} |
+ |
+@keyframes shineSmall { |
+ 100% { |
+ background-position: 9px 10px |
+ } |
+} |
+</style> |
+<div class="animatedBackground"></div> |
+<div class="transformedItem"></div> |