Summary: | Implement async paste method on UIWKInteractionViewProtocol | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Wenson Hsieh <wenson_hsieh> | ||||||
Component: | WebKit Misc. | Assignee: | Wenson Hsieh <wenson_hsieh> | ||||||
Status: | RESOLVED FIXED | ||||||||
Severity: | Normal | CC: | bdakin, commit-queue, megan_gardner, thorton, webkit-bug-importer | ||||||
Priority: | P2 | Keywords: | InRadar | ||||||
Version: | WebKit Nightly Build | ||||||||
Hardware: | Unspecified | ||||||||
OS: | Unspecified | ||||||||
Attachments: |
|
Description
Wenson Hsieh
2019-03-26 13:07:39 PDT
Created attachment 365991 [details]
Patch
Comment on attachment 365991 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=365991&action=review > Tools/TestWebKitAPI/Tests/ios/UIPasteboardTests.mm:151 > + [UIPasteboard generalPasteboard].URLs = @[[NSURL URLWithString:@"https://www.apple.com/"]]; @[ [thing thing] ];? (In reply to Tim Horton from comment #2) > Comment on attachment 365991 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=365991&action=review > > > Tools/TestWebKitAPI/Tests/ios/UIPasteboardTests.mm:151 > > + [UIPasteboard generalPasteboard].URLs = @[[NSURL URLWithString:@"https://www.apple.com/"]]; > > @[ [thing thing] ];? The linter seems to complain about spaces around a capture block when I do this (I think it thinks it's a C++ lambda :/) In any case, I changed this to just be ….URL = [NSURL …]; Created attachment 365994 [details]
Patch for landing
Comment on attachment 365994 [details] Patch for landing Clearing flags on attachment: 365994 Committed r243519: <https://trac.webkit.org/changeset/243519> |