Issue #1449 - Implement URLSearchParams's sort()

This commit is contained in:
Matt A. Tobin 2020-05-02 16:43:30 -04:00 • committed by Roy Tam
commit 0c44ae0a30
3 changed files with 51 additions and 1 deletions

View file

@ -22,6 +22,10 @@ interface URLSearchParams {
sequence<USVString> getAll(USVString name);
boolean has(USVString name);
void set(USVString name, USVString value);
[Throws]
void sort();
iterable<USVString, USVString>;
stringifier;
};