Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Unified Diff: tools/perf/page_sets/tough_animation_cases/resources/animation.css

Issue 665833002: Add CSS Animations performance tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/perf/page_sets/tough_animation_cases/css_transitions_staggered_triggering_by_inserting_style_element.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/tough_animation_cases/resources/animation.css
diff --git a/tools/perf/page_sets/tough_animation_cases/resources/animation.css b/tools/perf/page_sets/tough_animation_cases/resources/animation.css
new file mode 100644
index 0000000000000000000000000000000000000000..2ee2ed5c612d2d7473ab6db473a24b5ef562a22d
--- /dev/null
+++ b/tools/perf/page_sets/tough_animation_cases/resources/animation.css
@@ -0,0 +1,19 @@
+/* Copyright 2014 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+target {
+ -webkit-animation: anim 1s linear;
+}
+target.reverse {
+ -webkit-animation: reverse-anim 1s linear;
+}
+@-webkit-keyframes anim {
+ 0% { opacity: 0; }
+ 100% { opacity: 1; }
+}
+@-webkit-keyframes reverse-anim {
+ 0% { opacity: 1; }
+ 100% { opacity: 0; }
+}
« no previous file with comments | « tools/perf/page_sets/tough_animation_cases/css_transitions_staggered_triggering_by_inserting_style_element.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698