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

Unified Diff: third_party/WebKit/LayoutTests/animations/change-keyframes-name.html

Issue 2614683002: CSS Animations: Fix flaky change-keyframes-name.html (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/animations/change-keyframes-name.html
diff --git a/third_party/WebKit/LayoutTests/animations/change-keyframes-name.html b/third_party/WebKit/LayoutTests/animations/change-keyframes-name.html
index 909f7b16a1436c6ba4db90436e158f362d9cd956..227436622dd92cdbdaa4d1c0f274abcd6d0a6399 100644
--- a/third_party/WebKit/LayoutTests/animations/change-keyframes-name.html
+++ b/third_party/WebKit/LayoutTests/animations/change-keyframes-name.html
@@ -19,8 +19,8 @@
}
@-webkit-keyframes foo {
from { left: 100px; }
- 40% { left: 200px; }
- 60% { left: 200px; }
+ 10% { left: 200px; }
+ 90% { left: 200px; }
to { left: 300px; }
}
</style>
@@ -29,7 +29,7 @@
const expectedValues = [
// [time, element-id, property, expected-value, tolerance]
- [0.25, "box", "left", 200, 20],
+ [0.25, "box", "left", 200, 0],
suzyh_UTC10 (ex-contributor) 2017/01/04 23:29:49 To make this "0.25" time easier to understand, let
];
function findKeyframesRule(rule)
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698