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".
29 PASS RegExp('/').source is "\\/"
30 PASS RegExp('').source is "(?:)"
32 PASS RegExp('/').toString() is "/\\//"
33 PASS RegExp('').toString() is "/(?:)/"
34 PASS RegExp.prototype.toString() is "/(?:)/"
35 PASS testForwardSlash("^/$", "/"); is true
36 PASS testForwardSlash("^/$", "/"); is true
37 PASS testForwardSlash("^\/$", "/"); is true
38 PASS testForwardSlash("^\\/$", "\/"); is true
39 PASS testForwardSlash("^\\\/$", "\/"); is true
42 PASS testForwardSlash("x/x/x", "x\/x\/x"); is true
43 PASS testForwardSlash("x\/x/x", "x\/x\/x"); is true
44 PASS testForwardSlash("x/x\/x", "x\/x\/x"); is true
45 PASS testForwardSlash("x\/x\/x", "x\/x\/x"); 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
55 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