[refactor] More post-NSS WebCrypto cleanups (utility functions).
[chromium-blink-merge.git] / tools / perf / page_sets / tough_animation_cases / resources / animation.css
blob2ee2ed5c612d2d7473ab6db473a24b5ef562a22d
1 /* Copyright 2014 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
6 target {
7 -webkit-animation: anim 1s linear;
9 target.reverse {
10 -webkit-animation: reverse-anim 1s linear;
12 @-webkit-keyframes anim {
13 0% { opacity: 0; }
14 100% { opacity: 1; }
16 @-webkit-keyframes reverse-anim {
17 0% { opacity: 1; }
18 100% { opacity: 0; }