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

Unified Diff: third_party/WebKit/LayoutTests/animations/keyframe-multiple-timing-functions-transform.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/keyframe-multiple-timing-functions-transform.html
diff --git a/third_party/WebKit/LayoutTests/animations/keyframe-multiple-timing-functions-transform.html b/third_party/WebKit/LayoutTests/animations/keyframe-multiple-timing-functions-transform.html
index 172bd3b8c8b84f9b143337f0137fc95371704361..9f7472eb87d5a53b0bd7fb36dc80ac2d70054e5f 100644
--- a/third_party/WebKit/LayoutTests/animations/keyframe-multiple-timing-functions-transform.html
+++ b/third_party/WebKit/LayoutTests/animations/keyframe-multiple-timing-functions-transform.html
@@ -9,17 +9,17 @@
margin: 20px;
background-color: red;
transform: translateZ(0);
- -webkit-animation:
+ animation:
horizontal 2s linear 1 alternate,
fade 2s steps(1, end) 1 alternate;
}
- @-webkit-keyframes horizontal {
+ @keyframes horizontal {
from { transform: translateX(0px); }
to { transform: translateX(200px); }
}
- @-webkit-keyframes fade {
+ @keyframes fade {
from { opacity: 1.0; }
to { opacity: 0.0; }
}
@@ -28,9 +28,9 @@
<script type="text/javascript" charset="utf-8">
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
- [0.5, "box", "webkitTransform", [1,0,0,1, 50,0], 20],
- [1.0, "box", "webkitTransform", [1,0,0,1,100,0], 20],
- [1.5, "box", "webkitTransform", [1,0,0,1,150,0], 20],
+ [0.5, "box", "transform", [1,0,0,1, 50,0], 20],
+ [1.0, "box", "transform", [1,0,0,1,100,0], 20],
+ [1.5, "box", "transform", [1,0,0,1,150,0], 20],
[0.5, "box", "opacity", 1.0, 0.15],
[0.9, "box", "opacity", 1.0, 0.15],
[1.5, "box", "opacity", 1.0, 0.15],

Powered by Google App Engine
This is Rietveld 408576698