| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 assertEquals(String.fromCharCode(97, 220, 256), 'a' + '\u00DC' + '\u0100'); | 28 assertEquals(String.fromCharCode(97, 220, 256), 'a' + '\u00DC' + '\u0100'); |
| 29 assertEquals(String.fromCharCode(97, 220, 256), 'a\u00DC\u0100'); | 29 assertEquals(String.fromCharCode(97, 220, 256), 'a\u00DC\u0100'); |
| 30 | 30 |
| 31 assertEquals(0x80, JSON.stringify("\x80").charCodeAt(1)); | 31 assertEquals(0x80, JSON.stringify("\x80").charCodeAt(1)); |
| 32 assertEquals(0x80, JSON.stringify("\x80", 0, null).charCodeAt(1)); |
| 32 | 33 |
| 33 assertEquals(['a', 'b', '\xdc'], ['b', '\xdc', 'a'].sort()); | 34 assertEquals(['a', 'b', '\xdc'], ['b', '\xdc', 'a'].sort()); |
| 34 | 35 |
| 35 assertEquals(['\xfc\xdc', '\xfc'], new RegExp('(\xdc)\\1', 'i').exec('\xfc\xdc')
); | 36 assertEquals(['\xfc\xdc', '\xfc'], new RegExp('(\xdc)\\1', 'i').exec('\xfc\xdc')
); |
| 36 // Same test but for all values in Latin-1 range. | 37 // Same test but for all values in Latin-1 range. |
| 37 var total_lo = 0; | 38 var total_lo = 0; |
| 38 for (var i = 0; i < 0xff; i++) { | 39 for (var i = 0; i < 0xff; i++) { |
| 39 var base = String.fromCharCode(i); | 40 var base = String.fromCharCode(i); |
| 40 var escaped = base; | 41 var escaped = base; |
| 41 if (base == '(' || base == ')' || base == '*' || base == '+' || | 42 if (base == '(' || base == ')' || base == '*' || base == '+' || |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 for (var testNumber = 0; testNumber < 2; testNumber++) { | 82 for (var testNumber = 0; testNumber < 2; testNumber++) { |
| 82 var testString = "\xdc"; | 83 var testString = "\xdc"; |
| 83 var loopLength = testNumber == 0 ? 0 : 20; | 84 var loopLength = testNumber == 0 ? 0 : 20; |
| 84 for (var i = 0; i < loopLength; i++ ) { | 85 for (var i = 0; i < loopLength; i++ ) { |
| 85 testString += testString; | 86 testString += testString; |
| 86 } | 87 } |
| 87 var stringified = JSON.stringify({"test" : testString}, null, 0); | 88 var stringified = JSON.stringify({"test" : testString}, null, 0); |
| 88 var stringifiedExpected = '{"test":"' + testString + '"}'; | 89 var stringifiedExpected = '{"test":"' + testString + '"}'; |
| 89 assertEquals(stringifiedExpected, stringified); | 90 assertEquals(stringifiedExpected, stringified); |
| 90 } | 91 } |
| OLD | NEW |