summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/canvas/webgl/script-tests/arraybuffer-transfer-of-control.js
diff options
context:
space:
mode:
authordslomov@chromium.org <dslomov@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2013-08-06 13:44:54 +0000
committerdslomov@chromium.org <dslomov@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538>2013-08-06 13:44:54 +0000
commit35f18d9fde4e9e5deee4276ba4e684ef1baa86bb (patch)
tree649fc026a9840748ea37c53ca6aa698d00aa288e /third_party/WebKit/LayoutTests/fast/canvas/webgl/script-tests/arraybuffer-transfer-of-control.js
parente1b283f535e9daa615b4492285357ebabd13ec54 (diff)
downloadchromium_src-35f18d9fde4e9e5deee4276ba4e684ef1baa86bb.zip
chromium_src-35f18d9fde4e9e5deee4276ba4e684ef1baa86bb.tar.gz
chromium_src-35f18d9fde4e9e5deee4276ba4e684ef1baa86bb.tar.bz2
Use V8 implementation of TypedArrays and DataView in Blink
R=jochen@chromium.org,kbr@chromium.org BUG=259731 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=154741 Review URL: https://chromiumcodereview.appspot.com/19230002 git-svn-id: svn://svn.chromium.org/blink/trunk@155611 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/canvas/webgl/script-tests/arraybuffer-transfer-of-control.js')
-rw-r--r--third_party/WebKit/LayoutTests/fast/canvas/webgl/script-tests/arraybuffer-transfer-of-control.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/webgl/script-tests/arraybuffer-transfer-of-control.js b/third_party/WebKit/LayoutTests/fast/canvas/webgl/script-tests/arraybuffer-transfer-of-control.js
index 4e1ede2..a239803 100644
--- a/third_party/WebKit/LayoutTests/fast/canvas/webgl/script-tests/arraybuffer-transfer-of-control.js
+++ b/third_party/WebKit/LayoutTests/fast/canvas/webgl/script-tests/arraybuffer-transfer-of-control.js
@@ -13,6 +13,7 @@ var basicBufferTypes =
["Uint32", Uint32Array, 4],
["Int8", Int8Array, 1],
["Uint8", Uint8Array, 1],
+ ["Uint8Clamped", Uint8ClampedArray, 1],
["Int16", Int16Array, 2],
["Uint16", Uint16Array, 2],
["Float32", Float32Array, 4],
@@ -115,7 +116,7 @@ function assertViewClosed(testName, view)
return false;
} catch (xn) { }
try {
- view.set(0, 1);
+ view.set([0], 1);
testFailed(testName + ": set on a closed view succeeded");
return false;
} catch (xn) { }