blob: d43ebba4752fb2363fa8c5aeccd33b2e5c68c55d [file] [log] [blame]
// Copyright 2014 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.
// http://www.w3.org/TR/web-animations/#the-animationtimeline-interface
[
RuntimeEnabled=WebAnimationsAPI,
] interface AnimationTimeline {
attribute double? currentTime;
// TODO(crbug.com/624639): Move getAnimations() to DocumentAnimatable
sequence<Animation> getAnimations();
};