Add CEReactions where needed

This commit is contained in:
Connor Brewster 2017-07-10 14:47:03 -06:00
parent 438191e0b2
commit 2460997ee1
100 changed files with 1025 additions and 979 deletions

View file

@ -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;
};