Set Ready For Review
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Hi Jacques and Benjamin. Since it looks like you wrapped your head around this in crrev.com/c/6500379, could you please take a look at my proposed tweak? Thanks in advance!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
This makes sense to me, but can we add one or more unit tests that run on all platforms please? Thank you!
| 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. |
lgtm % ask for additional tests.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
lgtm % ask for additional tests.
Done
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| 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. |
Return the anchor boundary for line queries at a node's ignored edge
TryAsUnignoredPositionPreservingAnchor() returned a null position when
the end of an unignored anchor had an ignored leaf equivalent. That can
happen when an anchor's text is immediately followed by ignored content,
e.g. a display:block <code> element whose last child is an aria-hidden
"line-numbers" gutter. Under kStopAtAnchorBoundary this made text APIs
report no line for the anchor's last line, e.g. ATK's
get_string_at_offset(LINE) returned (-1, -1) for every offset.
The anchor's own end is a valid boundary rooted on the same node even
when its leaf equivalent is ignored, so return it instead of null.
AX-Relnotes: Fix bug that caused Orca to say "blank" and/or get stuck/
loop in some code elements due to invalid offsets.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |