posts/ladybird_attempt update
This commit is contained in:
parent
0af630f524
commit
2ee319ba23
1 changed files with 23 additions and 0 deletions
|
@ -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;
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue