Source code
Revision control
Copy as Markdown
Other Tools
// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into webref
enum PointerAxis {
"block",
"inline",
"x",
"y"
};
dictionary PointerTimelineOptions {
Element? source;
PointerAxis axis = "block";
};
[Exposed=Window]
interface PointerTimeline : AnimationTimeline {
constructor(optional PointerTimelineOptions options = {});
readonly attribute Element? source;
readonly attribute PointerAxis axis;
};