tor-browser

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

interest-invokers.tentative.idl (566B)


      1 interface mixin InterestInvokerElement {
      2  [CEReactions,Reflect=interestfor] attribute Element? interestForElement;
      3 };
      4 
      5 HTMLAnchorElement includes InterestInvokerElement;
      6 HTMLAreaElement includes InterestInvokerElement;
      7 HTMLButtonElement includes InterestInvokerElement;
      8 SVGAElement includes InterestInvokerElement;
      9 
     10 [Exposed=Window]
     11 interface InterestEvent : Event {
     12    constructor(DOMString type, optional InterestEventInit eventInitDict = {});
     13    readonly attribute Element? source;
     14 };
     15 
     16 dictionary InterestEventInit : EventInit {
     17    Element? source = null;
     18 };