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

Unified Diff: third_party/WebKit/LayoutTests/animations/opacity-transform-animation.html

Issue 2970883003: Separate out animations tests with prefixing (Closed)
Patch Set: Rebaseline virtual/threaded version of test too Created 3 years, 5 months 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/opacity-transform-animation.html
diff --git a/third_party/WebKit/LayoutTests/animations/opacity-transform-animation.html b/third_party/WebKit/LayoutTests/animations/opacity-transform-animation.html
index 8852502354daad82734c9f2aec1def72df9d76a4..a49da48cc0ba12e85f10e5b4bb6fd6e0905a4e3f 100644
--- a/third_party/WebKit/LayoutTests/animations/opacity-transform-animation.html
+++ b/third_party/WebKit/LayoutTests/animations/opacity-transform-animation.html
@@ -11,12 +11,12 @@
}
#box {
background-color: green;
- -webkit-animation-name: move;
- -webkit-animation-duration: 1s;
- -webkit-animation-timing-function: linear;
- -webkit-animation-iteration-count: 1;
+ animation-name: move;
+ animation-duration: 1s;
+ animation-timing-function: linear;
+ animation-iteration-count: 1;
}
- @-webkit-keyframes move {
+ @keyframes move {
from {
transform: translateX(0) scale(1);
opacity: 0.0;
@@ -36,7 +36,7 @@
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
- [0.5, "box", "webkitTransform.4", 200, 5],
+ [0.5, "box", "transform.4", 200, 5],
];
var disablePauseAnimationAPI = false;

Powered by Google App Engine
This is Rietveld 408576698