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

Unified Diff: third_party/WebKit/LayoutTests/animations/big-rotation.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/big-rotation.html
diff --git a/third_party/WebKit/LayoutTests/animations/big-rotation.html b/third_party/WebKit/LayoutTests/animations/big-rotation.html
index 06d85da1e0270ecff1dbf3e1517f9e6fdcb5331b..d1bec2ce2894402355da78c742b0934a961c76db 100644
--- a/third_party/WebKit/LayoutTests/animations/big-rotation.html
+++ b/third_party/WebKit/LayoutTests/animations/big-rotation.html
@@ -9,12 +9,12 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-duration: 3s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: rotate;
- -webkit-animation-fill-mode: forwards;
+ animation-duration: 3s;
+ animation-timing-function: linear;
+ animation-name: rotate;
+ animation-fill-mode: forwards;
}
- @-webkit-keyframes rotate {
+ @keyframes rotate {
from { transform: rotate(0); }
to { transform: rotate(540deg); }
}
@@ -24,9 +24,9 @@
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
- [1, "box", "webkitTransform", [-1,0,0,-1,0,0], 0.2],
- [2, "box", "webkitTransform", [1,0,0,1,0,0], 0.2],
- [3, "box", "webkitTransform", [-1,0,0,-1,0,0], 0.2],
+ [1, "box", "transform", [-1,0,0,-1,0,0], 0.2],
+ [2, "box", "transform", [1,0,0,1,0,0], 0.2],
+ [3, "box", "transform", [-1,0,0,-1,0,0], 0.2],
];
runAnimationTest(expectedValues);

Powered by Google App Engine
This is Rietveld 408576698