diff options
author | Tetsuharu OHZEKI <saneyuki.s.snyk@gmail.com> | 2013-08-11 05:25:06 +0900 |
---|---|---|
committer | Tetsuharu OHZEKI <saneyuki.s.snyk@gmail.com> | 2013-08-11 05:32:53 +0900 |
commit | b44d4346df86db06c85e7f490045347817f34df1 (patch) | |
tree | 96375edae13bf71781b79aaa7a6bc270a7bc1bcf /src/components/script/dom/bindings/utils.rs | |
parent | 0f957c9e223629545ed678829155a1b83d4ea609 (diff) | |
download | servo-b44d4346df86db06c85e7f490045347817f34df1.tar.gz servo-b44d4346df86db06c85e7f490045347817f34df1.zip |
Generate bindings for HTMLCanvasElement.
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 43bffa6d750..47d02a3c944 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, ..51]); + let protoArray = @mut ([0 as *JSObject, ..52]); assert!(protoArray.len() == PrototypeList::id::_ID_Count as uint); unsafe { //XXXjdm we should be storing the box pointer instead of the inner |