toLocaleString.baseline 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. 0. Non Object
  2. 1 -->
  3. NaN -->
  4. true -->
  5. TypeError : Array.prototype.toLocaleString: 'this' is null or undefined
  6. TypeError : Array.prototype.toLocaleString: 'this' is null or undefined
  7. 1. Object, length not uint32
  8. length: true -->
  9. length: abc -->
  10. length: 1.234 -->
  11. length: [object Object] -->
  12. 2. Array: normal
  13. 0.00,1.23,NaN,true,abc,[object Object],,0.00,1.00,2.00
  14. 3. Array: element toLocaleString not callable
  15. TypeError : The value of the property 'toLocaleString' is not a Function object
  16. 4. Array: element toLocaleString
  17. 0.00,anObject,,,another Object,1.00,a 3rd Object,2.00
  18. 5. Object: normal
  19. 0.00,1.23,NaN,true,abc,[object Object],,0.00,1.00,2.00
  20. 6. Object: element toLocaleString not callable
  21. TypeError : The value of the property 'toLocaleString' is not a Function object
  22. 7. Object: element toLocaleString
  23. 0.00,anObject,,,another Object,1.00,a 3rd Object,2.00
  24. 8. TypedArray: toLocaleString should use length from internal slot
  25. 0.00,31.00
  26. 9. Array: toLocaleString should use length property
  27. 10.00,20.00,30.00,,,
  28. 10. Array: toLocaleString should use toLocaleString accessor on element
  29. accessor-value
  30. 11. Array: toLocaleString should throw TypeError on undefined
  31. TypeError : The value of the property 'toLocaleString' is not a Function object
  32. 12. Array: toLocaleString should throw TypeError on invalid function
  33. TypeError : The value of the property 'toLocaleString' is not a Function object