tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

pointer-animations.idl (586B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: Pointer-driven Animations Module Level 1 (https://drafts.csswg.org/pointer-animations-1/)
      5 
      6 enum PointerAxis {
      7  "block",
      8  "inline",
      9  "x",
     10  "y"
     11 };
     12 
     13 dictionary PointerTimelineOptions {
     14  Element? source;
     15  PointerAxis axis = "block";
     16 };
     17 
     18 [Exposed=Window]
     19 interface PointerTimeline : AnimationTimeline {
     20  constructor(optional PointerTimelineOptions options = {});
     21  readonly attribute Element? source;
     22  readonly attribute PointerAxis axis;
     23 };