/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/Animation.webidl
34 строки
2 KB
Simon Wülker
script: Implement `Animation.effect`, `AnimationEffect.getTiming()`, `AnimationEffect.getComputedTiming()` and `AnimationEffect.updateTiming()` (#46677)
23 июл 2026, 18:37
Не верифицирован
23 июл 2026, 18:37
e510bf1
Код
Авторство
О чём код?
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // https://drafts.csswg.org/web-animations-1/#animation [Exposed=Window, Pref="dom_web_animations_enabled"] interface Animation : EventTarget { constructor(optional AnimationEffect? effect = null/*, optional AnimationTimeline? timeline */); // attribute DOMString id; attribute AnimationEffect? effect; // attribute AnimationTimeline? timeline; // attribute double? startTime; // attribute double? currentTime; // attribute double playbackRate; // readonly attribute AnimationPlayState playState; // readonly attribute AnimationReplaceState replaceState; // readonly attribute boolean pending; // readonly attribute Promise<Animation> ready; // readonly attribute Promise<Animation> finished; // attribute EventHandler onfinish; // attribute EventHandler oncancel; // attribute EventHandler onremove; // undefined cancel(); // undefined finish(); // undefined play(); // undefined pause(); // undefined updatePlaybackRate(double playbackRate); // undefined reverse(); // undefined persist(); // [CEReactions] // undefined commitStyles(); };