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