Index: LayoutTests/compositing/transitions/skew-notsequential-compositor.html |
diff --git a/LayoutTests/compositing/transitions/skew-notsequential-compositor.html b/LayoutTests/compositing/transitions/skew-notsequential-compositor.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..09811810bd840f10d8985a90ddc58ebbfe803c23 |
--- /dev/null |
+++ b/LayoutTests/compositing/transitions/skew-notsequential-compositor.html |
@@ -0,0 +1,24 @@ |
+<style> |
+div{ |
+ width: 0; |
+ height: 0; |
+ margin: 10px; |
+ border-right: solid 10px aqua; |
+ border-left: solid 10px aqua; |
+ border-top: solid 10px red; |
+ border-bottom: solid 10px red; |
+ animation-name: test; |
+ animation-duration: 2e10s; |
+ animation-delay: -1e10s; |
+ animation-fill-mode: forwards; |
+} |
+@keyframes test{ |
+ 0%{ |
+ transform: skew(0deg, 0deg); |
+ } |
+ 100%{ |
+ transform: skew(-45deg, 45deg); |
+ } |
+} |
+</style> |
+<div></div> |
alancutter (OOO until 2018)
2015/09/03 01:15:34
For test readability you should have a red expecte
nainar1
2015/09/03 04:07:29
Done.
|