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

Unified Diff: third_party/WebKit/LayoutTests/animations/transition-and-animation-1.html

Issue 2518273002: Remove unnecessary webkit prefixes from animation layout tests (Closed)
Patch Set: remove trailing space 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/transition-and-animation-1.html
diff --git a/third_party/WebKit/LayoutTests/animations/transition-and-animation-1.html b/third_party/WebKit/LayoutTests/animations/transition-and-animation-1.html
index cd160fa3d79b7e9453285dd816a4713a71673451..c6df04c1447fea3e22e55fb22ba50cfc5f30a791 100644
--- a/third_party/WebKit/LayoutTests/animations/transition-and-animation-1.html
+++ b/third_party/WebKit/LayoutTests/animations/transition-and-animation-1.html
@@ -13,13 +13,13 @@
height: 100px;
width: 100px;
background-color: blue;
- -webkit-animation-duration: 0.5s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-name: anim;
- -webkit-transition-property: -webkit-transform;
- -webkit-transition-duration: 10s;
+ animation-duration: 0.5s;
+ animation-timing-function: linear;
+ animation-name: anim;
+ transition-property: transform;
+ transition-duration: 10s;
}
- @-webkit-keyframes anim {
+ @keyframes anim {
from { transform: translateX(200px); }
to { transform: translateX(300px); }
}
@@ -29,7 +29,7 @@
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
- [0.55, "box", "webkitTransform", "none", null],
+ [0.55, "box", "transform", "none", null],
];
runAnimationTest(expectedValues, undefined, undefined, 'do-not-use-pause-api');
@@ -37,7 +37,7 @@
</script>
</head>
<body>
-This test has a transition and animation on the same property (-webkit-transform). But the transition is never triggered,
+This test has a transition and animation on the same property (transform). But the transition is never triggered,
so nothing should be moving when the animation finishes.
<div id="box">
</div>

Powered by Google App Engine
This is Rietveld 408576698