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
/
sin-boolean.js
blob
2475256b1d47a9bd28125717c810b22bf1225e78
1
(function(True) {
2
var x = 0;
3
var n = 1000000
4
for (var i = 0; i < n; ++i)
5
x = Math.sin(True);
6
if (x != Math.sin(1))
7
throw "Error: bad result: " + x;
8
})(true);