Open
Bug 2014906
Opened 3 months ago
Updated 3 months ago
[META] Implement ViewTimeline interface
Categories
(Core :: DOM: Animation, enhancement)
Core
DOM: Animation
Tracking
()
NEW
People
(Reporter: boris, Unassigned)
References
(Depends on 3 open bugs, Blocks 1 open bug, )
Details
(Keywords: meta)
Just like what we do for Bug 1676794. This is for ViewTimeline interface.
dictionary ViewTimelineOptions {
Element subject;
ScrollAxis axis = "block";
(DOMString or sequence<(CSSNumericValue or CSSKeywordValue)>) inset = "auto";
};
[Exposed=Window]
interface ViewTimeline : ScrollTimeline {
constructor(optional ViewTimelineOptions options = {});
readonly attribute Element subject;
readonly attribute CSSNumericValue startOffset;
readonly attribute CSSNumericValue endOffset;
};
| Reporter | ||
Comment 1•3 months ago
|
||
Make this meta because we could split this into separate bugs.
Keywords: meta
Summary: Implement ViewTimeline interface → [META] Implement ViewTimeline interface
Whiteboard: [scrollanimation:mvp]
You need to log in
before you can comment on or make changes to this bug.
Description
•