chromium/third_party/blink/web_tests/animations/resources/dynamic-stylesheet-insertion-main.css

body {
  width: 320px;
  height: 480px;
}

#splash {
  position: absolute;
  left: 20px;
  left: 60px;
  width: 100px;
  height: 100px;
  background-color: blue;
  transform: translate3d(0,80px,0);
  -webkit-animation-name: splashdown;
  -webkit-animation-duration: 3s;
  -webkit-animation-delay: 0.1s;
}

@-webkit-keyframes splashdown {
  0% {
    transform: translate3d(0, -300px, 0);
  }
  1% {
    -webkit-animation-timing-function: ease-in;
    transform: translate3d(0, 20px, 0);
  }
  3% {
    -webkit-animation-timing-function: ease-in-out;
    transform: translate3d(0, 100px, 0);
  }
  90% {
    transform: translate3d(0, 100px, 0);
  }
  100% {
    transform: translate3d(0, 500px, 0);
  }
}