diff options
author | Youngsoo Son <ysoo.son@samsung.com> | 2013-08-09 14:57:09 +0900 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2013-08-09 15:26:21 -0400 |
commit | fa7f367d22b027d9f98d760260dc9ca931c45d55 (patch) | |
tree | 8a35a8f9107fe01e480f4257ad5651a039f79b74 /src/components/script/dom/bindings/utils.rs | |
parent | 490e81f75c39479749934cc3aab91862394f8f1d (diff) | |
download | servo-fa7f367d22b027d9f98d760260dc9ca931c45d55.tar.gz servo-fa7f367d22b027d9f98d760260dc9ca931c45d55.zip |
Generate bindings for HTMLUListElement
Diffstat (limited to 'src/components/script/dom/bindings/utils.rs')
-rw-r--r-- | src/components/script/dom/bindings/utils.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/bindings/utils.rs b/src/components/script/dom/bindings/utils.rs index 1732692a2c4..5389d869241 100644 --- a/src/components/script/dom/bindings/utils.rs +++ b/src/components/script/dom/bindings/utils.rs @@ -617,7 +617,7 @@ pub extern fn ThrowingConstructor(_cx: *JSContext, _argc: uint, _vp: *JSVal) -> } pub fn initialize_global(global: *JSObject) { - let protoArray = @mut ([0 as *JSObject, ..49]); + let protoArray = @mut ([0 as *JSObject, ..50]); assert!(protoArray.len() == PrototypeList::id::_ID_Count as uint); unsafe { //XXXjdm we should be storing the box pointer instead of the inner |