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

Unified Diff: third_party/WebKit/LayoutTests/animations/combo-transform-rotate+scale.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/combo-transform-rotate+scale.html
diff --git a/third_party/WebKit/LayoutTests/animations/combo-transform-rotate+scale.html b/third_party/WebKit/LayoutTests/animations/combo-transform-rotate+scale.html
index 96e7f1e6eb2f983d59ba811e276f7c7c97d9c172..5a3734cd3857881e269f10ffd96b49fc6b169e78 100644
--- a/third_party/WebKit/LayoutTests/animations/combo-transform-rotate+scale.html
+++ b/third_party/WebKit/LayoutTests/animations/combo-transform-rotate+scale.html
@@ -10,11 +10,11 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-duration: 2s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: anim;
+ animation-duration: 2s;
+ animation-timing-function: linear;
+ animation-name: anim;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { transform: rotate(0) scale(1,1); }
to { transform: rotate(360deg) scale(2,4); }
}
@@ -24,8 +24,8 @@
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
- [0.5, "box", "webkitTransform", [0,1.25,-1.7,0,0,0], 0.2],
- [1.0, "box", "webkitTransform", [-1.5,0,0,-2.5,0,0], 0.2],
+ [0.5, "box", "transform", [0,1.25,-1.7,0,0,0], 0.2],
+ [1.0, "box", "transform", [-1.5,0,0,-2.5,0,0], 0.2],
];
runAnimationTest(expectedValues);

Powered by Google App Engine
This is Rietveld 408576698