mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
LibWeb: Add "CEReactions" to HTMLAnchorElement IDL as in spec
This commit is contained in:
parent
0761926127
commit
888efe367e
Notes:
sideshowbarker
2024-07-17 02:38:39 +09:00
Author: https://github.com/AtkinsSJ Commit: https://github.com/SerenityOS/serenity/commit/888efe367e Pull-request: https://github.com/SerenityOS/serenity/pull/18086 Reviewed-by: https://github.com/linusg
1 changed files with 11 additions and 11 deletions
|
@ -7,20 +7,20 @@ interface HTMLAnchorElement : HTMLElement {
|
|||
|
||||
[HTMLConstructor] constructor();
|
||||
|
||||
[Reflect] attribute DOMString target;
|
||||
[Reflect] attribute DOMString download;
|
||||
[Reflect] attribute DOMString ping;
|
||||
[Reflect] attribute DOMString rel;
|
||||
[CEReactions, Reflect] attribute DOMString target;
|
||||
[CEReactions, Reflect] attribute DOMString download;
|
||||
[CEReactions, Reflect] attribute DOMString ping;
|
||||
[CEReactions, Reflect] attribute DOMString rel;
|
||||
// FIXME: [SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
|
||||
[Reflect] attribute DOMString hreflang;
|
||||
[Reflect] attribute DOMString type;
|
||||
[CEReactions, Reflect] attribute DOMString hreflang;
|
||||
[CEReactions, Reflect] attribute DOMString type;
|
||||
|
||||
// Obsolete
|
||||
[Reflect] attribute DOMString coords;
|
||||
[Reflect] attribute DOMString charset;
|
||||
[Reflect] attribute DOMString name;
|
||||
[Reflect] attribute DOMString rev;
|
||||
[Reflect] attribute DOMString shape;
|
||||
[CEReactions, Reflect] attribute DOMString coords;
|
||||
[CEReactions, Reflect] attribute DOMString charset;
|
||||
[CEReactions, Reflect] attribute DOMString name;
|
||||
[CEReactions, Reflect] attribute DOMString rev;
|
||||
[CEReactions, Reflect] attribute DOMString shape;
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue