Home | History | Annotate | Download | only in regex

Lines Matching full:pass

26 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
30 PASS RegExp('').source is "(?:)"
31 PASS RegExp.prototype.source is "(?:)"
33 PASS RegExp('').toString() is "/(?:)/"
34 PASS RegExp.prototype.toString() is "/(?:)/"
38 PASS testForwardSlash("^\\/$", "\/"); is true
39 PASS testForwardSlash("^\\\/$", "\/"); is true
47 PASS testLineTerminator("\\n"); is false
49 PASS testLineTerminator("\\r"); is false
51 PASS testLineTerminator("\\u2028"); is false
53 PASS testLineTerminator("\\u2029"); is false
54 PASS RegExp('[/]').source is '[/]'
56 PASS var o = new RegExp(); o.toString() === '/'+o.source+'/' && eval(o.toString()+'.exec(String())') is [""]
57 PASS successfullyParsed is true