diff --git a/url.bs b/url.bs index 9b7e6b4b..969b3c06 100644 --- a/url.bs +++ b/url.bs @@ -3360,6 +3360,8 @@ so that running the URL parser on the output of running the URL serial interface URLSearchParams { 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); @@ -3484,6 +3486,9 @@ constructor steps are:
Initialize this with init. +
The size
getter steps are to return
+this's list's size.
+
The append(name, value)
method steps are: