summaryrefslogtreecommitdiffstats
path: root/dom/webidl
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-05-02 16:43:30 -0400
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-05-06 19:13:52 +0200
commit812574875b650526bae87d6eb5542eced678ca24 (patch)
treeb2b8f0e9741c119181503c71fe7588cd3cba83c2 /dom/webidl
parentcd196a77d4462f8f4ccda251a1514006d885ef90 (diff)
downloadUXP-812574875b650526bae87d6eb5542eced678ca24.tar
UXP-812574875b650526bae87d6eb5542eced678ca24.tar.gz
UXP-812574875b650526bae87d6eb5542eced678ca24.tar.lz
UXP-812574875b650526bae87d6eb5542eced678ca24.tar.xz
UXP-812574875b650526bae87d6eb5542eced678ca24.zip
Issue #1449 - Implement URLSearchParams's sort()
Diffstat (limited to 'dom/webidl')
-rw-r--r--dom/webidl/URLSearchParams.webidl4
1 files changed, 4 insertions, 0 deletions
diff --git a/dom/webidl/URLSearchParams.webidl b/dom/webidl/URLSearchParams.webidl
index b93f4e8b1..2828d81dd 100644
--- a/dom/webidl/URLSearchParams.webidl
+++ b/dom/webidl/URLSearchParams.webidl
@@ -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;
};