Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / animations / resources / dynamic-stylesheet-insertion-main.css
blobca6ed53cf71680fe207928ffe1432a04da078bf0
1 body {
2 width: 320px;
3 height: 480px;
6 #splash {
7 position: absolute;
8 left: 20px;
9 left: 60px;
10 width: 100px;
11 height: 100px;
12 background-color: blue;
13 transform: translate3d(0,80px,0);
14 -webkit-animation-name: splashdown;
15 -webkit-animation-duration: 0.6s;
16 -webkit-animation-delay: 0.1s;
19 @-webkit-keyframes splashdown {
20 0% {
21 transform: translate3d(0, -300px, 0);
23 30% {
24 -webkit-animation-timing-function: ease-in;
25 transform: translate3d(0, 20px, 0);
27 40% {
28 -webkit-animation-timing-function: ease-in-out;
29 transform: translate3d(0, 100px, 0);
31 90% {
32 transform: translate3d(0, 100px, 0);
34 100% {
35 transform: translate3d(0, 100px, 0);