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

Unified Diff: LayoutTests/css3/filters/filter-animation.html

Issue 716963002: Remove property-specific handling in animation-test-helpers.js (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@animhelpercleanup
Patch Set: rm whitespace 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
Index: LayoutTests/css3/filters/filter-animation.html
diff --git a/LayoutTests/css3/filters/filter-animation.html b/LayoutTests/css3/filters/filter-animation.html
index 44c20ae85a4f17600326f662ef0b9be4ade3f9d7..49af5c8cdfa412ff50cca35d4ef8d6d6a2d4c699 100644
--- a/LayoutTests/css3/filters/filter-animation.html
+++ b/LayoutTests/css3/filters/filter-animation.html
@@ -23,8 +23,8 @@
-webkit-animation: saturate-anim 2s linear
}
- #huerotate-box {
- -webkit-animation: huerotate-anim 2s linear
+ #hue-rotate-box {
+ -webkit-animation: hue-rotate-anim 2s linear
}
#invert-box {
@@ -67,7 +67,7 @@
to { -webkit-filter: saturate(1); }
}
- @-webkit-keyframes huerotate-anim {
+ @-webkit-keyframes hue-rotate-anim {
from { -webkit-filter: hue-rotate(0); }
to { -webkit-filter: hue-rotate(180deg); }
}
@@ -110,7 +110,7 @@
[1, "grayscale-box", "webkitFilter", 'grayscale(0.5)', 0.05],
[1, "sepia-box", "webkitFilter", 'sepia(0.5)', 0.05],
[1, "saturate-box", "webkitFilter", 'saturate(0.5)', 0.05],
- [1, "huerotate-box", "webkitFilter", 'huerotate(90deg)', 2],
+ [1, "hue-rotate-box", "webkitFilter", 'hue-rotate(90deg)', 2],
[1, "invert-box", "webkitFilter", 'invert(0.5)', 0.05],
[1, "opacity-box", "webkitFilter", 'opacity(0.5)', 0.05],
[1, "brightness-box", "webkitFilter", 'brightness(0.5)', 0.05],
@@ -128,7 +128,7 @@
<div class="box" id="grayscale-box"></div>
<div class="box" id="sepia-box"></div>
<div class="box" id="saturate-box"></div>
-<div class="box" id="huerotate-box"></div>
+<div class="box" id="hue-rotate-box"></div>
<div class="box" id="invert-box"></div>
<div class="box" id="opacity-box"></div>
<div class="box" id="brightness-box"></div>
« no previous file with comments | « LayoutTests/animations/transition-and-animation-2-expected.txt ('k') | LayoutTests/css3/filters/filter-animation-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698