blob: bb84b6e34439fca8998ed85c4fd3d359908dcaa5 [file] [log] [blame]
barraclough@apple.comf8632562010-11-29 18:52:16 +00001This page tests invalid character ranges in character classes.
2
3On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
4
5
6PASS /[a-c]+/.exec("-acbd"); is ["acb"]
7PASS /[a\-c]+/.exec("-acbd") is ["-ac"]
8PASS /[c-a]+/.exec("-acbd"); threw exception SyntaxError: Invalid regular expression: range out of order in character class.
barraclough@apple.com210f4532010-12-09 05:40:29 +00009PASS /[\d-x]+/.exec("1-3xy"); is ["1-3x"]
10PASS /[x-\d]+/.exec("1-3xy"); is ["1-3x"]
11PASS /[\d-\d]+/.exec("1-3xy"); is ["1-3"]
12PASS /[\d-a-z]+/.exec("az1-3y"); is ["az1-3"]
barraclough@apple.comf8632562010-11-29 18:52:16 +000013PASS /[\d\-x]+/.exec("1-3xy"); is ["1-3x"]
14PASS /[x\-\d]+/.exec("1-3xy"); is ["1-3x"]
15PASS /[\d\-\d]+/.exec("1-3xy"); is ["1-3"]
16PASS /[\d-]+/.exec("1-3xy") is ["1-3"]
17PASS successfullyParsed is true
18
19TEST COMPLETE
20