New issue 22 by rowi...@google.com: Google-JS-Test typed Arrays don't have
a .buffer property.
http://code.google.com/p/google-js-test/issues/detail?id=22
What steps will reproduce the problem?
...
var foo = new Uint8Array([1, 2, 3, 4]);
var x = foo.buffer; // Barfs, shouldn't barf.
...
https://developer.mozilla.org/en/JavaScript_typed_arrays/Uint8Array
I don't see any buffer attribute here:
https://developer.mozilla.org/en/JavaScript_typed_arrays/Uint8Array#Attributes
or here:
http://www.khronos.org/registry/typedarray/specs/latest/#7
Could you clarify why you think there should be one?
https://developer.mozilla.org/en/JavaScript_typed_arrays/ArrayBufferView#Typed_array_subclasses
All Typed arrays are subclasses of ArrayBufferView, which has buffer,
byteLength, and byteOffset hanging off of it.
You're right, thanks. Will make that happen.
Comment #4 on issue 22 by jaco...@google.com: Google-JS-Test typed Arrays
don't have a .buffer property.
http://code.google.com/p/google-js-test/issues/detail?id=22
This issue was closed by revision 0bcce4eb3672.