trisquel-icecat/icecat/testing/web-platform/tests/interfaces/interest-invokers.tentative.idl
2025-10-06 02:35:48 -06:00

18 lines
572 B
Text

interface mixin InterestInvokerElement {
[CEReactions,Reflect=interesttarget] attribute Element? interestTargetElement;
};
HTMLAnchorElement includes InterestInvokerElement;
HTMLAreaElement includes InterestInvokerElement;
HTMLButtonElement includes InterestInvokerElement;
SVGAElement includes InterestInvokerElement;
[Exposed=Window]
interface InterestEvent : Event {
constructor(DOMString type, optional InterestEventInit eventInitDict = {});
readonly attribute Element? source;
};
dictionary InterestEventInit : EventInit {
Element? source = null;
};