mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-26 20:26:53 +00:00
LibWeb: Change attribute type to USVString where applicable
Also mark USVString attributes as containing a URL, where applicable.
This commit is contained in:
parent
335d51d678
commit
1369fc5069
Notes:
github-actions[bot]
2024-08-17 05:59:13 +00:00
Author: https://github.com/tcl3
Commit: 1369fc5069
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1059
Reviewed-by: https://github.com/shannonbooth
19 changed files with 66 additions and 23 deletions
|
@ -9,7 +9,7 @@ interface HTMLLinkElement : HTMLElement {
|
|||
|
||||
[HTMLConstructor] constructor();
|
||||
|
||||
[CEReactions, Reflect] attribute DOMString href;
|
||||
[CEReactions, Reflect, URL] attribute USVString href;
|
||||
[CEReactions, Reflect=crossorigin, Enumerated=CORSSettingsAttribute] attribute DOMString? crossOrigin;
|
||||
[CEReactions, Reflect] attribute DOMString rel;
|
||||
[CEReactions] attribute DOMString as;
|
||||
|
@ -19,7 +19,7 @@ interface HTMLLinkElement : HTMLElement {
|
|||
[CEReactions, Reflect] attribute DOMString hreflang;
|
||||
[CEReactions, Reflect] attribute DOMString type;
|
||||
[FIXME, SameObject, PutForwards=value] readonly attribute DOMTokenList sizes;
|
||||
[CEReactions, Reflect=imagesrcset] attribute DOMString imageSrcset;
|
||||
[CEReactions, Reflect=imagesrcset] attribute USVString imageSrcset;
|
||||
[CEReactions, Reflect=imagesizes] attribute DOMString imageSizes;
|
||||
[CEReactions, Reflect=referrerpolicy, Enumerated=ReferrerPolicy] attribute DOMString referrerPolicy;
|
||||
[FIXME, SameObject, PutForwards=value] readonly attribute DOMTokenList blocking;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue