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

Unified Diff: third_party/WebKit/LayoutTests/animations/3d/transform-perspective.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/3d/transform-perspective.html
diff --git a/third_party/WebKit/LayoutTests/animations/3d/transform-perspective.html b/third_party/WebKit/LayoutTests/animations/3d/transform-perspective.html
index d82c43182bfccd493f472ebcd95f97fb97fcda39..b64fdb676587ef2dc3e4c75cb224c30fcb66133d 100644
--- a/third_party/WebKit/LayoutTests/animations/3d/transform-perspective.html
+++ b/third_party/WebKit/LayoutTests/animations/3d/transform-perspective.html
@@ -10,19 +10,19 @@
}
#box {
- -webkit-animation: anim 2s linear;
+ animation: anim 2s linear;
}
#box2 {
- -webkit-animation: anim2 2s linear;
+ animation: anim2 2s linear;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { transform: perspective(100px); }
to { transform: perspective(200px); }
}
- @-webkit-keyframes anim2 {
+ @keyframes anim2 {
from { transform: perspective(1000px); }
to { transform: none; }
}
@@ -38,7 +38,7 @@
function setupTest()
{
var box = document.getElementById('box');
- box.style.webkitTransform = 'perspective(1000px) rotateX(90deg)';
+ box.style.transform = 'perspective(1000px) rotateX(90deg)';
}
runAnimationTest(expectedValues);

Powered by Google App Engine
This is Rietveld 408576698