| Auto-Submit | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
LGTM w/ nits
// string. If the offset points an unpaired surrogate or `i` is out of bounds,```suggestion
// string. If the offset points to an unpaired surrogate or `i` is out of bounds,
```
// the surrogate code unit as is. If you'd like to check such surroagtes,```suggestion
// the surrogate code unit as is. If you'd like to check such surrogates,
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Auto-Submit | +1 |
| Commit-Queue | +2 |
// string. If the offset points an unpaired surrogate or `i` is out of bounds,```suggestion
// string. If the offset points to an unpaired surrogate or `i` is out of bounds,
```
Done
// the surrogate code unit as is. If you'd like to check such surroagtes,```suggestion
// the surrogate code unit as is. If you'd like to check such surrogates,
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
4 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: third_party/blink/renderer/platform/wtf/text/wtf_string.h
Insertions: 9, Deletions: 4.
The diff is too large to show. Please review the diff.
```
Add blink::String::CodePointAt()
For consistency with blink::StringView::CodePointAt(), this CL adds
blink::String::CodePointAt().
Key differences from CodePointAtOrZero():
- It CHECKs that the index is in bounds and the string is not null.
- It returns unpaired surrogate code units as-is instead of returning 0.
These differences allow for a more streamlined implementation by
omitting redundant checks when the caller has already verified the
index.
This CL also updates several call sites in frame_selection.cc,
mathml_operator_dictionary.cc, and unicode_utilities.cc where these
conditions are met.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |