WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
213061
[iOS] editing/pasteboard/dom-paste tests consistently time out
https://bugs.webkit.org/show_bug.cgi?id=213061
Summary
[iOS] editing/pasteboard/dom-paste tests consistently time out
Wenson Hsieh
Reported
2020-06-10 17:18:00 PDT
<
rdar://problem/64211161
>
Attachments
Patch
(4.93 KB, patch)
2020-06-10 17:39 PDT
,
Wenson Hsieh
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Wenson Hsieh
Comment 1
2020-06-10 17:39:30 PDT
Created
attachment 401608
[details]
Patch
Darin Adler
Comment 2
2020-06-10 17:42:59 PDT
Comment on
attachment 401608
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=401608&action=review
> Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm:4252 > + completionHandler([WKAutocorrectionContext autocorrectionContextWithWebContext:_lastAutocorrectionContext]);
Is it ever OK to do this twice? If not, then can we std::exchange to clear out _lastAutocorrectionContext here?
Wenson Hsieh
Comment 3
2020-06-10 17:45:59 PDT
Comment on
attachment 401608
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=401608&action=review
Thanks for the review!
>> Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm:4252 >> + completionHandler([WKAutocorrectionContext autocorrectionContextWithWebContext:_lastAutocorrectionContext]); > > Is it ever OK to do this twice? If not, then can we std::exchange to clear out _lastAutocorrectionContext here?
It’s /theoretically/ okay to do this twice (UIKit could potentially call into this twice in a row while handling a DOM paste request), so I would prefer to not std::exchange it with { }. (That said, I don’t think multiple calls would happen often in practice, if at all)
Darin Adler
Comment 4
2020-06-10 17:54:47 PDT
Comment on
attachment 401608
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=401608&action=review
>>> Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm:4252 >>> + completionHandler([WKAutocorrectionContext autocorrectionContextWithWebContext:_lastAutocorrectionContext]); >> >> Is it ever OK to do this twice? If not, then can we std::exchange to clear out _lastAutocorrectionContext here? > > It’s /theoretically/ okay to do this twice (UIKit could potentially call into this twice in a row while handling a DOM paste request), so I would prefer to not std::exchange it with { }. > > (That said, I don’t think multiple calls would happen often in practice, if at all)
What was worried about was keeping _lastAutocorrectionContext around indefinitely. But I guess what I missed is that the code above is in a method named cleanUpInteraction.
EWS
Comment 5
2020-06-10 19:40:47 PDT
Committed
r262891
: <
https://trac.webkit.org/changeset/262891
> All reviewed patches have been landed. Closing bug and clearing flags on
attachment 401608
[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