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

Unified Diff: tools/perf/page_sets/tough_animation_cases/transform_transitions.html

Issue 2530253002: CSS Animations: Reduce usage of webkit prefix in perf tests (Closed)
Patch Set: keyframes Created 4 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/overlay_background_color_css_transitions.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/transform_transitions.html
diff --git a/tools/perf/page_sets/tough_animation_cases/transform_transitions.html b/tools/perf/page_sets/tough_animation_cases/transform_transitions.html
index ade40f18a9482e608a4308083ec5cb81dcca2884..b2ab891c600722ac67156ee4b216b16806528f57 100644
--- a/tools/perf/page_sets/tough_animation_cases/transform_transitions.html
+++ b/tools/perf/page_sets/tough_animation_cases/transform_transitions.html
@@ -9,8 +9,8 @@
height: 100px;
width: 100px;
background-color: green;
- -webkit-border-radius: 10px;
- -webkit-transition: -webkit-transform 1s;
+ border-radius: 10px;
+ transition: transform 1s;
}
#poster {
@@ -77,7 +77,7 @@
style += values[j];
}
- elem.style.webkitTransform = style;
+ elem.style.transform = style;
i++;
document.getElementById("from").innerHTML = "From:<br> " + oldStyle;
« no previous file with comments | « tools/perf/page_sets/tough_animation_cases/overlay_background_color_css_transitions.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698