Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 27 by
wbax...@google.com: DataView Int8 type doesn't work.
http://code.google.com/p/google-js-test/issues/detail?id=27
What steps will reproduce the problem?
var array = new Uint8Array([0xff]);
var view = new DataView(array.buffer);
expectEq(-1, view.getInt8(0));
What is the expected output? What do you see instead?
The test should pass, but it fails saying it got 255 when it expected -1.