posts/ladybird_attempt update

This commit is contained in:
Collin Lefeber 2024-11-09 16:54:04 -05:00
parent 0af630f524
commit 2ee319ba23

View file

@ -83,3 +83,26 @@ Userland/Libraries/LibWeb/CSS/CSSAnimation.idl looks very good
readonly attribute CSSOMString animationName; readonly attribute CSSOMString animationName;
}; };
Or Userland/Libraries/LibWeb/DOMURL/DOMURL.idl that has an example of a constructor value.
#import <FileAPI/Blob.idl>
#import <DOMURL/URLSearchParams.idl>
// https://url.spec.whatwg.org/#url
[Exposed=*, LegacyWindowAlias=webkitURL, ImplementedAs=DOMURL]
interface URL {
constructor(USVString url, optional USVString base);
[ImplementedAs=parse_for_bindings] static DOMURL? parse(USVString url, optional USVString base);
static boolean canParse(USVString url, optional USVString base);
stringifier attribute USVString href;
readonly attribute USVString origin;
attribute USVString protocol;
attribute USVString username;
...