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

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-shorthand-overriding.html

Issue 2513343006: CSS Animations: Remove unnecessary webkit prefixes from layout tests (Closed)
Patch Set: 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
Index: third_party/WebKit/LayoutTests/animations/animation-shorthand-overriding.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-shorthand-overriding.html b/third_party/WebKit/LayoutTests/animations/animation-shorthand-overriding.html
index e254a513ed1974dcd70a91cb7f76ee57dfa9c2ae..bf55656086c1998b7925e0dbd331c549b71f6545 100644
--- a/third_party/WebKit/LayoutTests/animations/animation-shorthand-overriding.html
+++ b/third_party/WebKit/LayoutTests/animations/animation-shorthand-overriding.html
@@ -2,17 +2,17 @@
<head>
<title>Test animation shorthand property</title>
<style type="text/css">
-@-webkit-keyframes circle {
- from { transform:rotate(0deg); }
+@keyframes circle {
+ from { transform:rotate(0deg); }
to { transform:rotate(360deg); }
}
-@-webkit-keyframes inner-circle {
+@keyframes inner-circle {
from { transform:rotate(0deg); }
to { transform:rotate(-360deg); }
}
div > div {
- -webkit-animation: 5s linear normal none;
+ animation: 5s linear normal none;
}
div {
@@ -25,7 +25,7 @@ div > div {
background-color:black;
font-size:100px;
line-height:1;
- -webkit-animation-name: inner-circle;
+ animation-name: inner-circle;
}
</style>
<script type="text/javascript" charset="utf-8">
@@ -33,13 +33,13 @@ div > div {
testRunner.dumpAsText();
const kProperties = [
- "webkitAnimationName",
- "webkitAnimationDuration",
- "webkitAnimationTimingFunction",
- "webkitAnimationDelay",
- "webkitAnimationIterationCount",
- "webkitAnimationDirection",
- "webkitAnimationFillMode"
+ "animationName",
+ "animationDuration",
+ "animationTimingFunction",
+ "animationDelay",
+ "animationIterationCount",
+ "animationDirection",
+ "animationFillMode"
];
const kExpectedResult = { id: 'a', values: [ "inner-circle", "5s", "linear", "0s", "1", "normal", "none" ] };

Powered by Google App Engine
This is Rietveld 408576698