diff options
Diffstat (limited to 'components/script/dom/webidls/HTMLAreaElement.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLAreaElement.webidl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLAreaElement.webidl b/components/script/dom/webidls/HTMLAreaElement.webidl index b0395d39b2c..761d4635aff 100644 --- a/components/script/dom/webidls/HTMLAreaElement.webidl +++ b/components/script/dom/webidls/HTMLAreaElement.webidl @@ -5,12 +5,19 @@ // https://html.spec.whatwg.org/multipage/#htmlareaelement [HTMLConstructor] interface HTMLAreaElement : HTMLElement { + // [CEReactions] // attribute DOMString alt; + // [CEReactions] // attribute DOMString coords; + // [CEReactions] // attribute DOMString shape; + // [CEReactions] // attribute DOMString target; + // [CEReactions] // attribute DOMString download; + // [CEReactions] // attribute USVString ping; + // [CEReactions] // attribute DOMString rel; readonly attribute DOMTokenList relList; // hreflang and type are not reflected @@ -19,5 +26,6 @@ interface HTMLAreaElement : HTMLElement { // https://html.spec.whatwg.org/multipage/#HTMLAreaElement-partial partial interface HTMLAreaElement { - // attribute boolean noHref; + // [CEReactions] + // attribute boolean noHref; }; |