1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:17:35 +00:00

LibWeb: Add "CEReactions" to HTMLAnchorElement IDL as in spec

This commit is contained in:
Sam Atkins 2023-03-29 12:37:53 +01:00 committed by Linus Groh
parent 0761926127
commit 888efe367e

View file

@ -7,20 +7,20 @@ interface HTMLAnchorElement : HTMLElement {
[HTMLConstructor] constructor(); [HTMLConstructor] constructor();
[Reflect] attribute DOMString target; [CEReactions, Reflect] attribute DOMString target;
[Reflect] attribute DOMString download; [CEReactions, Reflect] attribute DOMString download;
[Reflect] attribute DOMString ping; [CEReactions, Reflect] attribute DOMString ping;
[Reflect] attribute DOMString rel; [CEReactions, Reflect] attribute DOMString rel;
// FIXME: [SameObject, PutForwards=value] readonly attribute DOMTokenList relList; // FIXME: [SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
[Reflect] attribute DOMString hreflang; [CEReactions, Reflect] attribute DOMString hreflang;
[Reflect] attribute DOMString type; [CEReactions, Reflect] attribute DOMString type;
// Obsolete // Obsolete
[Reflect] attribute DOMString coords; [CEReactions, Reflect] attribute DOMString coords;
[Reflect] attribute DOMString charset; [CEReactions, Reflect] attribute DOMString charset;
[Reflect] attribute DOMString name; [CEReactions, Reflect] attribute DOMString name;
[Reflect] attribute DOMString rev; [CEReactions, Reflect] attribute DOMString rev;
[Reflect] attribute DOMString shape; [CEReactions, Reflect] attribute DOMString shape;
}; };