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

Unified Diff: third_party/WebKit/LayoutTests/animations/animation-end-event-short-iterations.html

Issue 2527583002: 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-end-event-short-iterations.html
diff --git a/third_party/WebKit/LayoutTests/animations/animation-end-event-short-iterations.html b/third_party/WebKit/LayoutTests/animations/animation-end-event-short-iterations.html
index e84f4d505af3448b552079322d60b4f89da28fcf..9b48303f137124bbb221bca006245e9271b78820 100644
--- a/third_party/WebKit/LayoutTests/animations/animation-end-event-short-iterations.html
+++ b/third_party/WebKit/LayoutTests/animations/animation-end-event-short-iterations.html
@@ -9,12 +9,12 @@
top: 10px;
height: 100px;
width: 100px;
- -webkit-animation-duration: 0.001s;
- -webkit-animation-name: anim;
+ animation-duration: 0.001s;
+ animation-name: anim;
background-color: #999;
- -webkit-animation-iteration-count: 2;
+ animation-iteration-count: 2;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { left: 200px; }
to { left: 300px; }
}
@@ -27,8 +27,8 @@
onload = function()
{
- document.addEventListener('webkitAnimationEnd', function() {
- document.getElementById('result').innerHTML = 'PASS: got webkitAnimationEnd event';
+ document.addEventListener('animationend', function() {
+ document.getElementById('result').innerHTML = 'PASS: got animationend event';
if (window.testRunner)
testRunner.notifyDone();
}, false);
@@ -41,8 +41,8 @@
</script>
</head>
<body>
-Checks that we still end an animation properly (i.e. fire a webkitAnimationEnd
+Checks that we still end an animation properly (i.e. fire a animationend
event) when using more than one iteration with very short durations.
-<pre id="result">FAIL: no webkitAnimationEnd event received</pre>
+<pre id="result">FAIL: no animationend event received</pre>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698