| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 PASS parseFloat(illegalUTF16Sequence + '1') is NaN | 48 PASS parseFloat(illegalUTF16Sequence + '1') is NaN |
| 49 PASS parseFloat(tab + '1') is 1 | 49 PASS parseFloat(tab + '1') is 1 |
| 50 PASS parseFloat(nbsp + '1') is 1 | 50 PASS parseFloat(nbsp + '1') is 1 |
| 51 PASS parseFloat(ff + '1') is 1 | 51 PASS parseFloat(ff + '1') is 1 |
| 52 PASS parseFloat(vt + '1') is 1 | 52 PASS parseFloat(vt + '1') is 1 |
| 53 PASS parseFloat(cr + '1') is 1 | 53 PASS parseFloat(cr + '1') is 1 |
| 54 PASS parseFloat(lf + '1') is 1 | 54 PASS parseFloat(lf + '1') is 1 |
| 55 PASS parseFloat(ls + '1') is 1 | 55 PASS parseFloat(ls + '1') is 1 |
| 56 PASS parseFloat(ps + '1') is 1 | 56 PASS parseFloat(ps + '1') is 1 |
| 57 PASS parseFloat(oghamSpaceMark + '1') is 1 | 57 PASS parseFloat(oghamSpaceMark + '1') is 1 |
| 58 FAIL parseFloat(mongolianVowelSeparator + '1') should be 1. Was NaN. | 58 PASS parseFloat(mongolianVowelSeparator + '1') is NaN |
| 59 PASS parseFloat(enQuad + '1') is 1 | 59 PASS parseFloat(enQuad + '1') is 1 |
| 60 PASS parseFloat(emQuad + '1') is 1 | 60 PASS parseFloat(emQuad + '1') is 1 |
| 61 PASS parseFloat(enSpace + '1') is 1 | 61 PASS parseFloat(enSpace + '1') is 1 |
| 62 PASS parseFloat(emSpace + '1') is 1 | 62 PASS parseFloat(emSpace + '1') is 1 |
| 63 PASS parseFloat(threePerEmSpace + '1') is 1 | 63 PASS parseFloat(threePerEmSpace + '1') is 1 |
| 64 PASS parseFloat(fourPerEmSpace + '1') is 1 | 64 PASS parseFloat(fourPerEmSpace + '1') is 1 |
| 65 PASS parseFloat(sixPerEmSpace + '1') is 1 | 65 PASS parseFloat(sixPerEmSpace + '1') is 1 |
| 66 PASS parseFloat(figureSpace + '1') is 1 | 66 PASS parseFloat(figureSpace + '1') is 1 |
| 67 PASS parseFloat(punctuationSpace + '1') is 1 | 67 PASS parseFloat(punctuationSpace + '1') is 1 |
| 68 PASS parseFloat(thinSpace + '1') is 1 | 68 PASS parseFloat(thinSpace + '1') is 1 |
| 69 PASS parseFloat(hairSpace + '1') is 1 | 69 PASS parseFloat(hairSpace + '1') is 1 |
| 70 PASS parseFloat(narrowNoBreakSpace + '1') is 1 | 70 PASS parseFloat(narrowNoBreakSpace + '1') is 1 |
| 71 PASS parseFloat(mediumMathematicalSpace + '1') is 1 | 71 PASS parseFloat(mediumMathematicalSpace + '1') is 1 |
| 72 PASS parseFloat(ideographicSpace + '1') is 1 | 72 PASS parseFloat(ideographicSpace + '1') is 1 |
| 73 PASS successfullyParsed is true | 73 PASS successfullyParsed is true |
| 74 | 74 |
| 75 TEST COMPLETE | 75 TEST COMPLETE |
| 76 | 76 |
| OLD | NEW |