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

Side by Side Diff: third_party/WebKit/Source/core/animation/AnimationEffectTimingReadOnly.idl

Issue 2572003003: NOT FOR SUBMIT: use counters for jdm@
Patch Set: Merge branch 'jdm-usecounters' into jdm-merge Created 4 years 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // https://w3c.github.io/web-animations/#the-animationeffecttimingreadonly-inter face 5 // https://w3c.github.io/web-animations/#the-animationeffecttimingreadonly-inter face
6 // TODO(suzyh): Use enums instead of DOMStrings where specced 6 // TODO(suzyh): Use enums instead of DOMStrings where specced
7 7
8 [ 8 [
9 RuntimeEnabled=WebAnimationsAPI, 9 RuntimeEnabled=WebAnimationsAPI,
10 ] interface AnimationEffectTimingReadOnly { 10 ] interface AnimationEffectTimingReadOnly {
11 readonly attribute double delay; 11 [Measure] readonly attribute double delay;
12 readonly attribute double endDelay; 12 [Measure] readonly attribute double endDelay;
13 readonly attribute DOMString fill; 13 [Measure] readonly attribute DOMString fill;
14 readonly attribute double iterationStart; 14 [Measure] readonly attribute double iterationStart;
15 readonly attribute unrestricted double iterations; 15 [Measure] readonly attribute unrestricted double iterations;
16 readonly attribute (unrestricted double or DOMString) duration; 16 [Measure] readonly attribute (unrestricted double or DOMString) duration;
17 readonly attribute DOMString direction; 17 [Measure] readonly attribute DOMString direction;
18 readonly attribute DOMString easing; 18 [Measure] readonly attribute DOMString easing;
19 }; 19 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698