| OLD | NEW |
| 1 PASS Function("'use strict'; \"\\010\"") threw exception of type SyntaxError. | 1 PASS Function("'use strict'; \"\\010\"") threw exception of type SyntaxError. |
| 2 PASS !!Function("\"\\010\"") is true | 2 PASS !!Function("\"\\010\"") is true |
| 3 PASS true === true | 3 PASS true === true |
| 4 PASS Function("'use strict'; \"\\00\"") threw exception of type SyntaxError. | 4 PASS Function("'use strict'; \"\\00\"") threw exception of type SyntaxError. |
| 5 PASS !!Function("\"\\00\"") is true | 5 PASS !!Function("\"\\00\"") is true |
| 6 PASS true === true | 6 PASS true === true |
| 7 PASS Function("'use strict'; \"\\1\"") threw exception of type SyntaxError. | 7 PASS Function("'use strict'; \"\\1\"") threw exception of type SyntaxError. |
| 8 PASS !!Function("\"\\1\"") is true | 8 PASS !!Function("\"\\1\"") is true |
| 9 PASS true === true | 9 PASS true === true |
| 10 PASS Function("'use strict'; \"\\08\"") threw exception of type SyntaxError. | 10 FAIL Function("'use strict'; \"\\08\"") should throw an instance of SyntaxError |
| 11 PASS !!Function("\"\\08\"") is true | 11 PASS !!Function("\"\\08\"") is true |
| 12 PASS true === true | 12 PASS true === true |
| 13 PASS !!Function("'use strict'; \"\\0\"") is true | 13 PASS !!Function("'use strict'; \"\\0\"") is true |
| 14 PASS !!Function("\"\\0\"") is true | 14 PASS !!Function("\"\\0\"") is true |
| 15 PASS true === true | 15 PASS true === true |
| 16 PASS !!Function("'use strict'; \"\\0x\"") is true | 16 PASS !!Function("'use strict'; \"\\0x\"") is true |
| 17 PASS !!Function("\"\\0x\"") is true | 17 PASS !!Function("\"\\0x\"") is true |
| 18 PASS true === true | 18 PASS true === true |
| 19 PASSED! | 19 PASSED! |
| 20 PASS successfullyParsed is true | 20 PASS successfullyParsed is true |
| 21 | 21 |
| 22 TEST COMPLETE | 22 TEST COMPLETE |
| 23 | 23 |
| OLD | NEW |