Changeset 27201 in webkit for trunk/JavaScriptCore/kjs/string_object.cpp
- Timestamp:
- Oct 28, 2007, 7:52:04 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/string_object.cpp
r27096 r27201 664 664 double start = a0->toNumber(exec); 665 665 double end = a1->toNumber(exec); 666 if (is NaN(start))666 if (isnan(start)) 667 667 start = 0; 668 if (is NaN(end))668 if (isnan(end)) 669 669 end = 0; 670 670 if (start < 0)
Note:
See TracChangeset
for help on using the changeset viewer.