WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 240036
Enable TextCheckingType::Correction on MacCatalyst.
https://bugs.webkit.org/show_bug.cgi?id=240036
Summary
Enable TextCheckingType::Correction on MacCatalyst.
Megan Gardner
Reported
2022-05-03 13:58:24 PDT
Enable TextCheckingType::Correction on MacCatalyst.
Attachments
Patch
(7.59 KB, patch)
2022-05-03 14:00 PDT
,
Megan Gardner
no flags
Details
Formatted Diff
Diff
Patch
(7.52 KB, patch)
2022-05-03 22:58 PDT
,
Megan Gardner
no flags
Details
Formatted Diff
Diff
Patch for landing
(7.52 KB, patch)
2022-05-03 23:22 PDT
,
Megan Gardner
no flags
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Megan Gardner
Comment 1
2022-05-03 14:00:11 PDT
Created
attachment 458755
[details]
Patch
Wenson Hsieh
Comment 2
2022-05-03 14:03:22 PDT
rdar://92691014
Wenson Hsieh
Comment 3
2022-05-03 15:27:45 PDT
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 });`.
Megan Gardner
Comment 4
2022-05-03 22:58:32 PDT
Created
attachment 458772
[details]
Patch
Megan Gardner
Comment 5
2022-05-03 23:22:50 PDT
Created
attachment 458774
[details]
Patch for landing
EWS
Comment 6
2022-05-04 01:34:57 PDT
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]
.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug