1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:28:12 +00:00

LibWeb: Add HTMLAnchorElement.text getter and setter

And a FIXME for the missing `referrerPolicy` property.
This commit is contained in:
Sam Atkins 2023-03-29 12:38:32 +01:00 committed by Linus Groh
parent 888efe367e
commit 0c19d3aa58
3 changed files with 19 additions and 0 deletions

View file

@ -15,6 +15,8 @@ interface HTMLAnchorElement : HTMLElement {
[CEReactions, Reflect] attribute DOMString hreflang;
[CEReactions, Reflect] attribute DOMString type;
[CEReactions] attribute DOMString text;
// Obsolete
[CEReactions, Reflect] attribute DOMString coords;
[CEReactions, Reflect] attribute DOMString charset;