diff options
author | saneyuki_s <saneyuki.s.snyk@gmail.com> | 2013-08-09 21:29:38 +0900 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2013-08-09 12:01:03 -0400 |
commit | d0e0a16ee601df516d00605efcff1fab71fdca27 (patch) | |
tree | 0a5c23c1aaad77876123b9be93f8378035822a20 /src/components/script/dom/bindings/utils.rs | |
parent | ebb4f3b3d1ed2e7904cb756394ca883a0a47f7a7 (diff) | |
download | servo-d0e0a16ee601df516d00605efcff1fab71fdca27.tar.gz servo-d0e0a16ee601df516d00605efcff1fab71fdca27.zip |
Generate bindings for HTMLTableRowElement.
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 492cdd29772..5b4aec76baa 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, ..47]); + let protoArray = @mut ([0 as *JSObject, ..48]); assert!(protoArray.len() == PrototypeList::id::_ID_Count as uint); unsafe { //XXXjdm we should be storing the box pointer instead of the inner |