Commit ca814444 authored by dslomov@chromium.org's avatar dslomov@chromium.org

Revert "patch from issue 13993029"

This reverts commit 2d49d456dd09a8f8ffae87f777d5f10b587534e8.
Revert patch with incorrect description

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14504 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 8cddabbf
...@@ -86,7 +86,8 @@ function ArrayBufferSlice(start, end) { ...@@ -86,7 +86,8 @@ function ArrayBufferSlice(start, end) {
function CreateTypedArrayConstructor(name, elementSize, arrayId, constructor) { function CreateTypedArrayConstructor(name, elementSize, arrayId, constructor) {
function ConstructByArrayBuffer(obj, buffer, byteOffset, length) { function ConstructByArrayBuffer(obj, buffer, byteOffset, length) {
var offset = IS_UNDEFINED(byteOffset) ? 0 : TO_POSITIVE_INTEGER(byteOffset); var offset = IS_UNDEFINED(byteOffset)
? 0 : offset = TO_POSITIVE_INTEGER(byteOffset);
if (offset % elementSize !== 0) { if (offset % elementSize !== 0) {
throw MakeRangeError("invalid_typed_array_alignment", throw MakeRangeError("invalid_typed_array_alignment",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment