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
/
tan.js
blob
a3b1afc5f93b7087314807eddd16a6bc7d32db24
1
//@ skip if $hostOS == "windows"
2
// FIXME: unskip this test when https://bugs.webkit.org/show_bug.cgi?id=165194 is fixed.
3
4
(function () {
5
for (var i = 0; i < 3000000; ++i)
6
x = Math.tan(i);
7
8
if (x != 1.8222665884307354)
9
throw "Error: bad result: " + x;
10
})();