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

Unified Diff: third_party/WebKit/LayoutTests/compositing/animation/animation-compositing.html

Issue 2521163002: CSS Animations: Reduce usage of webkit prefix in 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/compositing/animation/animation-compositing.html
diff --git a/third_party/WebKit/LayoutTests/compositing/animation/animation-compositing.html b/third_party/WebKit/LayoutTests/compositing/animation/animation-compositing.html
index 47ca6172cd2df847b9b489cf6c46212995031caf..89e0f23eb801cf276bc676f2ec96c6633aadf8b5 100644
--- a/third_party/WebKit/LayoutTests/compositing/animation/animation-compositing.html
+++ b/third_party/WebKit/LayoutTests/compositing/animation/animation-compositing.html
@@ -10,10 +10,10 @@
}
.spinning {
- -webkit-animation: spin 2s infinite linear;
+ animation: spin 2s infinite linear;
}
- @-webkit-keyframes spin {
+ @keyframes spin {
from { transform: rotate(0); }
to { transform: rotate(360deg); }
}
@@ -27,7 +27,7 @@
function doTest()
{
var box = document.getElementById('box');
- box.addEventListener('webkitAnimationStart', function() {
+ box.addEventListener('animationstart', function() {
if (window.testRunner) {
var layers = window.internals.layerTreeAsText(document);
var result;

Powered by Google App Engine
This is Rietveld 408576698