summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/blink/renderer/core/animation/animation_effect_timing_read_only.idl
blob: 2c00b09ec210e7c97d803d1d9cdae4693af5332e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://drafts.csswg.org/web-animations/#the-animationeffecttimingreadonly-interface
// TODO(suzyh): Use enums instead of DOMStrings where specced

[
    RuntimeEnabled=WebAnimationsAPI
] interface AnimationEffectTimingReadOnly {
    readonly attribute double delay;
    readonly attribute double endDelay;
    readonly attribute DOMString fill;
    readonly attribute double iterationStart;
    readonly attribute unrestricted double iterations;
    readonly attribute (unrestricted double or DOMString) duration;
    readonly attribute PlaybackDirection direction;
    readonly attribute DOMString easing;
};