Index: LayoutTests/animations/webkit-perspective.html |
diff --git a/LayoutTests/animations/webkit-perspective.html b/LayoutTests/animations/webkit-perspective.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..64484d5dcbce572b908e6b1818b08e0b13a2f04c |
--- /dev/null |
+++ b/LayoutTests/animations/webkit-perspective.html |
@@ -0,0 +1,20 @@ |
+<!DOCTYPE html> |
+<style> |
+#perspective { |
+ -webkit-animation: anim 1s infinite; |
+} |
+@-webkit-keyframes anim { |
+ 0% { -webkit-perspective: 35px; } |
+ 100% { -webkit-perspective: 35px; } |
+} |
+#transform { |
+ width: 100px; |
+ height: 100px; |
+ background: blue; |
+ -webkit-transform: rotateY(45deg); |
+} |
+</style> |
+<div id="perspective"> |
+ <div id="transform"> |
+ </div> |
+</div> |