Files
tubestation/servo/components/script/dom/webidls/URLSearchParams.webidl
yoyo930021 b56155b7dc servo: Merge #13637 - Make URLSearchParams iterable (from servo:URLSearchParams); r=emilio
Fixes #13022.
Fixes #13077.

Source-Repo: https://github.com/servo/servo
Source-Revision: b1c5b9182003cf56b0953a6a1aa01f47b49d3f14
2016-10-07 11:10:01 -05:00

22 lines
864 B
Plaintext

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/*
* The origin of this IDL file is
* https://url.spec.whatwg.org/#interface-urlsearchparams
*/
[Constructor(optional (USVString or URLSearchParams) init/* = ""*/), Exposed=(Window,Worker)]
interface URLSearchParams {
void append(USVString name, USVString value);
void delete(USVString name);
USVString? get(USVString name);
sequence<USVString> getAll(USVString name);
boolean has(USVString name);
void set(USVString name, USVString value);
// Be careful with implementing iterable interface.
// Search params might be mutated by URL::SetSearch while iterating (discussed in PR #10351).
iterable<USVString, USVString>;
stringifier;
};