Bug 1094545. Expose the URLSearchParams API in system globals. r=bholley

This commit is contained in:
Boris Zbarsky 2014-11-07 14:10:39 -05:00
Родитель 98fa65732a
Коммит e952f7adeb
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -11882,6 +11882,7 @@ class CGResolveSystemBinding(CGAbstractMethod):
def definition_body(self):
descriptors = self.config.getDescriptors(hasInterfaceObject=True,
isExposedInSystemGlobals=True,
workers=False,
register=True,
skipGen=False)

Просмотреть файл

@ -15,7 +15,7 @@
[Constructor(optional USVString init = ""),
Constructor(URLSearchParams init),
Exposed=(Window,Worker)]
Exposed=(Window,Worker,System)]
interface URLSearchParams {
void append(USVString name, USVString value);
void delete(USVString name);