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

Unified Diff: LayoutTests/web-animations-api/timed-item-specified-setters.html

Issue 929273002: Use IDL union for Timing.duration (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 | « no previous file | Source/core/animation/AnimationNodeTiming.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/web-animations-api/timed-item-specified-setters.html
diff --git a/LayoutTests/web-animations-api/timed-item-specified-setters.html b/LayoutTests/web-animations-api/timed-item-specified-setters.html
index eb19525ca97174f4492520c2201a09f2f3b99a7e..f955ab2e7e30012cd2845e0eb0e5e2df2a15fbe3 100644
--- a/LayoutTests/web-animations-api/timed-item-specified-setters.html
+++ b/LayoutTests/web-animations-api/timed-item-specified-setters.html
@@ -32,7 +32,7 @@ test(function() {
specifiedTiming.duration = 5;
assert_equals(specifiedTiming.duration, 5);
specifiedTiming.duration = '6';
- assert_equals(specifiedTiming.duration, 6);
+ assert_equals(specifiedTiming.duration, 'auto');
specifiedTiming.duration = 'auto';
assert_equals(specifiedTiming.duration, 'auto');
specifiedTiming.duration = 'a';
« no previous file with comments | « no previous file | Source/core/animation/AnimationNodeTiming.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698