Implement URLSearchParams::getAll

This commit is contained in:
Fernando Martins 2016-01-15 22:40:55 +00:00
parent 4cb2c87982
commit 29b14d4b3d
4 changed files with 13 additions and 16 deletions

View file

@ -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>;