| Summary: | Enable TextCheckingType::Correction on MacCatalyst. | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Megan Gardner <megan_gardner> | ||||||||
| Component: | New Bugs | Assignee: | Megan Gardner <megan_gardner> | ||||||||
| Status: | RESOLVED FIXED | ||||||||||
| Severity: | Normal | CC: | ews-watchlist, mifenton, webkit-bug-importer, wenson_hsieh | ||||||||
| Priority: | P2 | Keywords: | InRadar | ||||||||
| Version: | WebKit Nightly Build | ||||||||||
| Hardware: | Unspecified | ||||||||||
| OS: | Unspecified | ||||||||||
| Attachments: |
|
||||||||||
|
Description
Megan Gardner
2022-05-03 13:58:24 PDT
Created attachment 458755 [details]
Patch
Comment on attachment 458755 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=458755&action=review > Source/WebCore/editing/Editor.cpp:2886 > + for (const auto& range : previousGrammarRanges) { > + if (range.location == resultLocation && range.length == resultLength) { > + resultRangeIsAcceptableForReplacement = true; > + break; > + } > + } Nit - might be cleaner as ``` resultRangeIsAcceptableForReplacement = previousGrammarRanges.containsIf([&](auto& range) { return range.location == resultLocation && range.length == resultLength; }); ``` > Source/WebCore/editing/Editor.cpp:2909 > + previousGrammarRanges.append(CharacterRange(resultLocation + detail.range.location, detail.range.length)); Nit - I think we normally write this as `previousGrammarRanges.append({ resultLocation + detail.range.location, detail.range.length });`. Created attachment 458772 [details]
Patch
Created attachment 458774 [details]
Patch for landing
Committed r293766 (250245@main): <https://commits.webkit.org/250245@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 458774 [details]. |