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