| browser.js |
|
0 |
| shell.js |
|
0 |
| with-dotall-unicode.js |
---
description: Test the characters included by . in dotAll and unicode mode
info: |
21.2.2.8 Atom
The production Atom::. evaluates as follows:
1. If DotAll is true, then
a. Let A be the set of all characters.
2. Otherwise, let A be the set of all characters except LineTerminator.
3. Call CharacterSetMatcher(A, false) and return its Matcher result.
esid: sec-atom
features: [regexp-dotall, u180e]
--- |
1135 |
| with-dotall.js |
---
description: Test the characters included by . in dotAll and non-unicode mode
info: |
21.2.2.8 Atom
The production Atom::. evaluates as follows:
1. If DotAll is true, then
a. Let A be the set of all characters.
2. Otherwise, let A be the set of all characters except LineTerminator.
3. Call CharacterSetMatcher(A, false) and return its Matcher result.
esid: sec-atom
features: [regexp-dotall, u180e]
--- |
1142 |
| without-dotall-unicode.js |
---
description: Without the dotAll flag, . does not match newlines in Unicode mode
info: |
21.2.2.8 Atom
The production Atom::. evaluates as follows:
1. If DotAll is true, then
a. Let A be the set of all characters.
2. Otherwise, let A be the set of all characters except LineTerminator.
3. Call CharacterSetMatcher(A, false) and return its Matcher result.
esid: sec-atom
features: [u180e]
--- |
1128 |
| without-dotall.js |
---
description: Without the dotAll flag, . does not match newlines
info: |
21.2.2.8 Atom
The production Atom::. evaluates as follows:
1. If DotAll is true, then
a. Let A be the set of all characters.
2. Otherwise, let A be the set of all characters except LineTerminator.
3. Call CharacterSetMatcher(A, false) and return its Matcher result.
esid: sec-atom
features: [u180e]
--- |
1111 |