mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-06 08:10:02 +00:00
LibWeb/URLPattern: Add initial stub for URLPattern interface
This commit is contained in:
parent
46bfced9ad
commit
d4649db55e
Notes:
github-actions[bot]
2025-01-27 18:08:17 +00:00
Author: https://github.com/shannonbooth
Commit: d4649db55e
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3224
Reviewed-by: https://github.com/AtkinsSJ ✅
9 changed files with 146 additions and 0 deletions
61
Libraries/LibWeb/URLPattern/URLPattern.idl
Normal file
61
Libraries/LibWeb/URLPattern/URLPattern.idl
Normal file
|
@ -0,0 +1,61 @@
|
|||
typedef (USVString or URLPatternInit) URLPatternInput;
|
||||
|
||||
// https://urlpattern.spec.whatwg.org/#urlpattern
|
||||
[Exposed=(Window,Worker)]
|
||||
interface URLPattern {
|
||||
constructor(URLPatternInput input, USVString baseURL, optional URLPatternOptions options = {});
|
||||
constructor(optional URLPatternInput input = {}, optional URLPatternOptions options = {});
|
||||
|
||||
[FIXME] boolean test(optional URLPatternInput input = {}, optional USVString baseURL);
|
||||
|
||||
[FIXME] URLPatternResult? exec(optional URLPatternInput input = {}, optional USVString baseURL);
|
||||
|
||||
[FIXME] readonly attribute USVString protocol;
|
||||
[FIXME] readonly attribute USVString username;
|
||||
[FIXME] readonly attribute USVString password;
|
||||
[FIXME] readonly attribute USVString hostname;
|
||||
[FIXME] readonly attribute USVString port;
|
||||
[FIXME] readonly attribute USVString pathname;
|
||||
[FIXME] readonly attribute USVString search;
|
||||
[FIXME] readonly attribute USVString hash;
|
||||
|
||||
[FIXME] readonly attribute boolean hasRegExpGroups;
|
||||
};
|
||||
|
||||
// https://urlpattern.spec.whatwg.org/#dictdef-urlpatterninit
|
||||
dictionary URLPatternInit {
|
||||
USVString protocol;
|
||||
USVString username;
|
||||
USVString password;
|
||||
USVString hostname;
|
||||
USVString port;
|
||||
USVString pathname;
|
||||
USVString search;
|
||||
USVString hash;
|
||||
USVString baseURL;
|
||||
};
|
||||
|
||||
// https://urlpattern.spec.whatwg.org/#dictdef-urlpatternoptions
|
||||
dictionary URLPatternOptions {
|
||||
boolean ignoreCase = false;
|
||||
};
|
||||
|
||||
// https://urlpattern.spec.whatwg.org/#dictdef-urlpatternresult
|
||||
dictionary URLPatternResult {
|
||||
sequence<URLPatternInput> inputs;
|
||||
|
||||
URLPatternComponentResult protocol;
|
||||
URLPatternComponentResult username;
|
||||
URLPatternComponentResult password;
|
||||
URLPatternComponentResult hostname;
|
||||
URLPatternComponentResult port;
|
||||
URLPatternComponentResult pathname;
|
||||
URLPatternComponentResult search;
|
||||
URLPatternComponentResult hash;
|
||||
};
|
||||
|
||||
// https://urlpattern.spec.whatwg.org/#dictdef-urlpatterncomponentresult
|
||||
dictionary URLPatternComponentResult {
|
||||
USVString input;
|
||||
record<USVString, (USVString or undefined)> groups;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue