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