Skip to content

Commit 888efe3

Browse files
AtkinsSJlinusg
authored andcommitted
LibWeb: Add "CEReactions" to HTMLAnchorElement IDL as in spec
1 parent 0761926 commit 888efe3

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Userland/Libraries/LibWeb/HTML/HTMLAnchorElement.idl

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ interface HTMLAnchorElement : HTMLElement {
77

88
[HTMLConstructor] constructor();
99

10-
[Reflect] attribute DOMString target;
11-
[Reflect] attribute DOMString download;
12-
[Reflect] attribute DOMString ping;
13-
[Reflect] attribute DOMString rel;
10+
[CEReactions, Reflect] attribute DOMString target;
11+
[CEReactions, Reflect] attribute DOMString download;
12+
[CEReactions, Reflect] attribute DOMString ping;
13+
[CEReactions, Reflect] attribute DOMString rel;
1414
// FIXME: [SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
15-
[Reflect] attribute DOMString hreflang;
16-
[Reflect] attribute DOMString type;
15+
[CEReactions, Reflect] attribute DOMString hreflang;
16+
[CEReactions, Reflect] attribute DOMString type;
1717

1818
// Obsolete
19-
[Reflect] attribute DOMString coords;
20-
[Reflect] attribute DOMString charset;
21-
[Reflect] attribute DOMString name;
22-
[Reflect] attribute DOMString rev;
23-
[Reflect] attribute DOMString shape;
19+
[CEReactions, Reflect] attribute DOMString coords;
20+
[CEReactions, Reflect] attribute DOMString charset;
21+
[CEReactions, Reflect] attribute DOMString name;
22+
[CEReactions, Reflect] attribute DOMString rev;
23+
[CEReactions, Reflect] attribute DOMString shape;
2424

2525
};
2626

0 commit comments

Comments
 (0)