aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/bindings/codegen/Configuration.py
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2013-09-06 11:34:02 -0400
committerJosh Matthews <josh@joshmatthews.net>2013-09-09 10:25:39 -0700
commitda599c6ccf86a936f0603d832535cc18a7447cc8 (patch)
tree1e8a3e9cd57df04c13fc17bd324bbf1dda421247 /src/components/script/dom/bindings/codegen/Configuration.py
parent2d3a4d7e1d847a9e1d57ca2c00664953f17e239a (diff)
downloadservo-da599c6ccf86a936f0603d832535cc18a7447cc8.tar.gz
servo-da599c6ccf86a936f0603d832535cc18a7447cc8.zip
Make the global object be the Window object. Fixes #833.
Diffstat (limited to 'src/components/script/dom/bindings/codegen/Configuration.py')
-rw-r--r--src/components/script/dom/bindings/codegen/Configuration.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/script/dom/bindings/codegen/Configuration.py b/src/components/script/dom/bindings/codegen/Configuration.py
index d597da940e4..32918d272b3 100644
--- a/src/components/script/dom/bindings/codegen/Configuration.py
+++ b/src/components/script/dom/bindings/codegen/Configuration.py
@@ -143,6 +143,7 @@ class Descriptor(DescriptorProvider):
self.concreteType = desc.get('concreteType', ifaceName)
self.needsAbstract = desc.get('needsAbstract', [])
self.hasInstanceInterface = desc.get('hasInstanceInterface', None)
+ self.createGlobal = desc.get('createGlobal', False)
# Do something sane for JSObject
if self.nativeType == "JSObject":