Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
V0201: TimeClip does not convert negative zero to positive zero
The specification states:
-
... TimeClip (time) The abstract operation TimeClip calculates a number of milliseconds from its argument, which must be an ECMAScript Number value. This operator functions as follows: 1. If time is not finite, return NaN. 2. If abs(time) > 8.64 × 10^15, return NaN. 3. Let clippedTime be ... ToInteger(time). 4. If clippedTime is -0, set clippedTime to +0. 5. Return clippedTime.
EdgeHTML Mode
TimeClip does not convert negative zero to positive zero (step 4).