Make URLSearchParams iterable.

Fixes #13022.
Fixes #13077.
This commit is contained in:
yoyo930021 2016-08-27 14:27:48 +08:00 committed by Ms2ger
parent a6e4b5bb86
commit 980c644a83
4 changed files with 67 additions and 4 deletions

View file

@ -16,7 +16,6 @@ interface URLSearchParams {
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>;
iterable<USVString, USVString>;
stringifier;
};