repo.or.cz
/
qtwebkit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Update ReadMe.md
[qtwebkit.git]
/
JSTests
/
microbenchmarks
/
fixed-typed-array-storage.js
blob
6a26ff141b0303fcac5bd5bc02ccd77703b73095
1
var array = new Int8Array(new ArrayBuffer(100));
2
3
function foo() {
4
return array[0];
5
}
6
7
for (var i = 0; i < 100000; ++i) {
8
if (foo() != 0)
9
throw "Error";
10
}