Sign in
webkit
/
WebKit
/
ca9ea9c661b22e01937c876740e608cae2e1c754
/
.
/
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)"
);