RESOLVED FIXED 237810
[Mail compose] Allow copied resources with remote (HTTP/HTTPS) URLs to be pasted as attachments
https://bugs.webkit.org/show_bug.cgi?id=237810
Summary [Mail compose] Allow copied resources with remote (HTTP/HTTPS) URLs to be pas...
Wenson Hsieh
Reported 2022-03-12 14:05:26 PST
Attachments
Patch (7.81 KB, patch)
2022-03-12 14:36 PST, Wenson Hsieh
no flags
For landing (7.83 KB, patch)
2022-03-14 14:34 PDT, Wenson Hsieh
no flags
Wenson Hsieh
Comment 1 2022-03-12 14:36:43 PST
Devin Rousso
Comment 2 2022-03-14 14:15:52 PDT
Comment on attachment 454541 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=454541&action=review r=me, neato :) > Source/WebCore/editing/cocoa/WebContentReaderCocoa.mm:209 > + return replacementType == ReplacementMethod::Attachment || !url.protocolIsInHTTPFamily(); NIT: I feel like this would read better as a separate if. ``` if (url.protocolIsInHTTPFamily()) return replacementType == ReplacementMethod::Attachment; return true; ```
Wenson Hsieh
Comment 3 2022-03-14 14:17:41 PDT
Comment on attachment 454541 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=454541&action=review Thanks for the review! >> Source/WebCore/editing/cocoa/WebContentReaderCocoa.mm:209 >> + return replacementType == ReplacementMethod::Attachment || !url.protocolIsInHTTPFamily(); > > NIT: I feel like this would read better as a separate if. > ``` > if (url.protocolIsInHTTPFamily()) > return replacementType == ReplacementMethod::Attachment; > > return true; > ``` Sounds good — will change it to that.
Wenson Hsieh
Comment 4 2022-03-14 14:34:32 PDT
Created attachment 454622 [details] For landing
EWS
Comment 5 2022-03-14 18:56:23 PDT
Committed r291261 (248413@main): <https://commits.webkit.org/248413@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 454622 [details].
Note You need to log in before you can comment on or make changes to this bug.