Source code
Revision control
Copy as Markdown
Other Tools
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;
};