diff options
author | Moonchild <mcwerewolf@wolfbeast.com> | 2019-03-14 15:21:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-14 15:21:42 +0100 |
commit | 91cbd86a5e0e851904015fc98f3b4bb4422e584b (patch) | |
tree | 603ad2d101065a622db1d02c0f0603a0fdfcea51 /dom/bindings/Configuration.py | |
parent | d791dfed61bbc963351e5965657a3b13d4e6dceb (diff) | |
parent | 0ff4dbff80ddea637b0fb02c885e222ddcfa171a (diff) | |
download | UXP-91cbd86a5e0e851904015fc98f3b4bb4422e584b.tar UXP-91cbd86a5e0e851904015fc98f3b4bb4422e584b.tar.gz UXP-91cbd86a5e0e851904015fc98f3b4bb4422e584b.tar.lz UXP-91cbd86a5e0e851904015fc98f3b4bb4422e584b.tar.xz UXP-91cbd86a5e0e851904015fc98f3b4bb4422e584b.zip |
Merge pull request #1002 from JustOff/PR_URLSearchParams
Align URLSearchParams with the spec
Diffstat (limited to 'dom/bindings/Configuration.py')
-rw-r--r-- | dom/bindings/Configuration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/bindings/Configuration.py b/dom/bindings/Configuration.py index 5c96580a1..f80c19c33 100644 --- a/dom/bindings/Configuration.py +++ b/dom/bindings/Configuration.py @@ -115,7 +115,7 @@ class Configuration(DescriptorProvider): for (t, _) in getAllTypes(self.descriptors, self.dictionaries, self.callbacks): while True: - if t.isMozMap(): + if t.isRecord(): t = t.inner elif t.unroll() != t: t = t.unroll() |