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

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-properties-in-keyframe-are-ignored.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-properties-in-keyframe-are-ignored.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-properties-in-keyframe-are-ignored.html b/third_party/WebKit/LayoutTests/animations/animation-properties-in-keyframe-are-ignored.html
index fdd965de044236508ccc5abe03f13ecae048514b..48df4ff08cb943167ab115b94895209492b86daf 100644
--- a/third_party/WebKit/LayoutTests/animations/animation-properties-in-keyframe-are-ignored.html
+++ b/third_party/WebKit/LayoutTests/animations/animation-properties-in-keyframe-are-ignored.html
@@ -3,36 +3,36 @@
<head>
<style type="text/css" media="screen">
div#target {
- -webkit-animation: 4s test;
+ animation: 4s test;
background-color: red;
position: relative;
width: 100px;
height: 100px;
}
- @-webkit-keyframes test {
+ @keyframes test {
from {
left: 0px;
- -webkit-animation-timing-function: linear;
+ animation-timing-function: linear;
/* These should be ignored */
- -webkit-animation-name: bogus;
- -webkit-animation-duration: 10s;
- -webkit-animation-iteration-count: 10;
- -webkit-animation-direction: reverse;
- -webkit-animation-play-state: paused;
- -webkit-animation-delay: 10s;
- -webkit-animation-fill-mode: forwards;
+ animation-name: bogus;
+ animation-duration: 10s;
+ animation-iteration-count: 10;
+ animation-direction: reverse;
+ animation-play-state: paused;
+ animation-delay: 10s;
+ animation-fill-mode: forwards;
}
to {
left: 200px;
- -webkit-animation-timing-function: linear;
+ animation-timing-function: linear;
/* These should be ignored */
- -webkit-animation-name: bogus;
- -webkit-animation-duration: 10s;
- -webkit-animation-iteration-count: 10;
- -webkit-animation-direction: reverse;
- -webkit-animation-play-state: paused;
- -webkit-animation-delay: 10s;
- -webkit-animation-fill-mode: forwards;
+ animation-name: bogus;
+ animation-duration: 10s;
+ animation-iteration-count: 10;
+ animation-direction: reverse;
+ animation-play-state: paused;
+ animation-delay: 10s;
+ animation-fill-mode: forwards;
}
}
</style>

Powered by Google App Engine
This is Rietveld 408576698