Implement URLSearchParams's size

Signed-off-by: 2shiori17 <98276492+2shiori17@users.noreply.github.com>
This commit is contained in:
2shiori17 2023-03-02 12:21:08 +09:00
parent 61fe4cf606
commit b6d3ff97de
3 changed files with 6 additions and 26 deletions

View file

@ -9,6 +9,7 @@
[Exposed=(Window,Worker)]
interface URLSearchParams {
[Throws] constructor(optional (sequence<sequence<USVString>> or record<USVString, USVString> or USVString) init = "");
readonly attribute unsigned long size;
undefined append(USVString name, USVString value);
undefined delete(USVString name);
USVString? get(USVString name);