I've done some playing around with typed arrays using Firefox 4, and have noticed some things.
The size of
ArrayBufferthat can be created is an integer in the range[0..2147483647]. Passing2147483648throws the same error as passing a negative number, passing4294967296returns an emptyArrayBuffer, and passing4294967297returns anArrayBufferwith length1. Thus I assume that the size value is interpreted as a signed 32-bit integer.While
Int32Arrayobjects can only be created by default fromArrayBufferobjects whosebyteLengthis a multiple of four, I was surprised thatnew Int32Array(new ArrayBuffer(2147483644));causedInt32Arrayto throw the same error I would get for passing anArrayBufferthat isn't a multiple of four, while every other lower multiple of four did work as anArrayBuffersize.
While the first thing I noticed is pretty normal (though somewhat wasteful that signed integers appears to have been chosen), I'm particularly curious about the second thing I noticed. Are these implementation behaviours formally defined in any specification?