mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Implement URLSearchParams::getAll
This commit is contained in:
parent
4cb2c87982
commit
29b14d4b3d
4 changed files with 13 additions and 16 deletions
|
@ -12,7 +12,7 @@ interface URLSearchParams {
|
|||
void append(USVString name, USVString value);
|
||||
void delete(USVString name);
|
||||
USVString? get(USVString name);
|
||||
// sequence<USVString> getAll(USVString name);
|
||||
sequence<USVString> getAll(USVString name);
|
||||
boolean has(USVString name);
|
||||
void set(USVString name, USVString value);
|
||||
// iterable<USVString, USVString>;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue