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

@ -13,15 +13,21 @@
// https://html.spec.whatwg.org/multipage/#htmlanchorelement
[HTMLConstructor]
interface HTMLAnchorElement : HTMLElement {
[CEReactions]
attribute DOMString target;
// [CEReactions]
// attribute DOMString download;
// [CEReactions]
// attribute USVString ping;
[CEReactions]
attribute DOMString rel;
readonly attribute DOMTokenList relList;
// [CEReactions]
// attribute DOMString hreflang;
// [CEReactions]
// attribute DOMString type;
[Pure]
[CEReactions, Pure]
attribute DOMString text;
// also has obsolete members
@ -30,9 +36,14 @@ HTMLAnchorElement implements HTMLHyperlinkElementUtils;
// https://html.spec.whatwg.org/multipage/#HTMLAnchorElement-partial
partial interface HTMLAnchorElement {
[CEReactions]
attribute DOMString coords;
// attribute DOMString charset;
// [CEReactions]
// attribute DOMString charset;
[CEReactions]
attribute DOMString name;
[CEReactions]
attribute DOMString rev;
[CEReactions]
attribute DOMString shape;
};