OLD | NEW |
1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 the V8 project authors. All rights reserved. |
2 # Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 # Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
3 # | 3 # |
4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
5 # modification, are permitted provided that the following conditions | 5 # modification, are permitted provided that the following conditions |
6 # are met: | 6 # are met: |
7 # 1. Redistributions of source code must retain the above copyright | 7 # 1. Redistributions of source code must retain the above copyright |
8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
9 # 2. Redistributions in binary form must reproduce the above copyright | 9 # 2. Redistributions in binary form must reproduce the above copyright |
10 # notice, this list of conditions and the following disclaimer in the | 10 # notice, this list of conditions and the following disclaimer in the |
(...skipping 10 matching lines...) Expand all Loading... |
21 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 21 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
22 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 22 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
23 | 23 |
24 This test checks for regression against 4147: Array.toString() and toLocaleStrin
g() improvements from KDE KJS. | 24 This test checks for regression against 4147: Array.toString() and toLocaleStrin
g() improvements from KDE KJS. |
25 | 25 |
26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
27 | 27 |
28 | 28 |
29 PASS [1].toString() is '1' | 29 PASS [1].toString() is '1' |
30 PASS [1].toLocaleString() is 'toLocaleString' | 30 PASS [1].toLocaleString() is 'toLocaleString' |
31 FAIL [1].toLocaleString() should be 1. Threw exception TypeError: [1].toLocaleSt
ring is not a function | 31 FAIL [1].toLocaleString() should be 1. Threw exception TypeError: (var).toLocale
String is not a function |
32 PASS [/r/].toString() is 'toString2' | 32 PASS [/r/].toString() is 'toString2' |
33 PASS [/r/].toLocaleString() is 'toLocaleString2' | 33 PASS [/r/].toLocaleString() is 'toLocaleString2' |
34 FAIL [/r/].toLocaleString() should be toString2. Threw exception TypeError: [/r/
].toLocaleString is not a function | 34 FAIL [/r/].toLocaleString() should be toString2. Threw exception TypeError: (var
).toLocaleString is not a function |
35 PASS caught is true | 35 PASS caught is true |
36 PASS successfullyParsed is true | 36 PASS successfullyParsed is true |
37 | 37 |
38 TEST COMPLETE | 38 TEST COMPLETE |
39 | 39 |
OLD | NEW |