Sign in
webkit
/
WebKit
/
f6013b2d8a67a21431419ad45d183d56cb11b105
/
.
/
LayoutTests
/
js
/
script-tests
/
mod-by-zero.js
blob: d86415e80b9a79de02f3c26d9c8dfbf8eb3000eb [
file
] [
log
] [
blame
]
description
(
"This tests that modulo with zero does not crash but returns NaN."
);
function
mod
(
b
)
{
return
b
%
b
;
}
shouldBeNaN
(
"mod(0)"
);