Sign in
webkit
/
WebKit
/
69084d7b0eae184a8076d683d5feee69bc80ce44
/
.
/
LayoutTests
/
js
/
script-tests
/
floating-point-denormalized.js
blob: 7ce491e7f405a1598cdd9758ae02f576db8be0f0 [
file
] [
log
] [
blame
]
description
(
"This tests that floating point math supports for denormalized numbers."
);
var
count
=
0
;
var
value
=
1
;
while
(
value
/
2
)
{
value
/=
2
;
++
count
;
}
if
(
count
==
1074
)
debug
(
"PASS"
);
else
debug
(
"FAIL: expected 1074, actual "
+
count
);