Chromium Code Reviews| Index: test/mjsunit/regexp-UC16.js |
| =================================================================== |
| --- test/mjsunit/regexp-UC16.js (revision 1235) |
| +++ test/mjsunit/regexp-UC16.js (working copy) |
| @@ -41,3 +41,7 @@ |
| assertEquals(longUC16String + "," + longUC16String.substring(1,4), |
| String(/x(...)\1\1/i.exec(longUC16String)), |
| "backref-UC16-twice"); |
| + |
| +assertFalse(/\xc1/i.test('fooA')); |
|
Lasse Reichstein
2009/02/06 15:50:56
Please give the tests a name (if nothing else, a s
|
| +assertFalse(/[\xe9]/.test('i')); |
| +assertFalse(/\u5e74|\u6708/.test('t')); |