blob: 2c00b09ec210e7c97d803d1d9cdae4693af5332e [file] [log] [blame]
// 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;
};