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

Unified Diff: third_party/WebKit/LayoutTests/animations/keyframes-iteration-count-non-integer.html

Issue 2522123002: 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/keyframes-iteration-count-non-integer.html
diff --git a/third_party/WebKit/LayoutTests/animations/keyframes-iteration-count-non-integer.html b/third_party/WebKit/LayoutTests/animations/keyframes-iteration-count-non-integer.html
index ccdd06d6c0e81b10bab9f0e9b8df0c489553b950..6caa48fe1289b524a7ff1ce05fb474c1da6ec12f 100644
--- a/third_party/WebKit/LayoutTests/animations/keyframes-iteration-count-non-integer.html
+++ b/third_party/WebKit/LayoutTests/animations/keyframes-iteration-count-non-integer.html
@@ -13,12 +13,12 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-duration: 2s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: anim;
- -webkit-animation-iteration-count: 0.3;
+ animation-duration: 2s;
+ animation-timing-function: linear;
+ animation-name: anim;
+ animation-iteration-count: 0.3;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { left: 50px; }
20% { left: 100px; }
40% { left: 100px; }
@@ -35,7 +35,7 @@
testRunner.waitUntilDone();
}
- document.addEventListener("webkitAnimationEnd", function(event){
+ document.addEventListener("animationend", function(event){
var result;
if (event.elapsedTime > 0 && event.elapsedTime < 1)
result = "PASS end of animation";

Powered by Google App Engine
This is Rietveld 408576698