RESOLVED FIXED 171239
Content-Disposition header filename is ignored when 'download' attribute is specified in HTML
https://bugs.webkit.org/show_bug.cgi?id=171239
Summary Content-Disposition header filename is ignored when 'download' attribute is s...
Chris Dumez
Reported 2017-04-24 11:56:48 PDT
Content-Disposition header filename is ignored when 'download' attribute is specified in HTML. This is not as per HTML specification: - https://html.spec.whatwg.org/#as-a-download (Step 2) Content-Disposition header filename is supposed to override the value of the download attribute. Firefox and Chrome follow the specification.
Attachments
Patch (12.99 KB, patch)
2017-04-24 12:04 PDT, Chris Dumez
no flags
Patch (13.75 KB, patch)
2017-04-24 13:08 PDT, Chris Dumez
no flags
Patch (14.16 KB, patch)
2017-04-24 18:29 PDT, Chris Dumez
no flags
Archive of layout-test-results from ews104 for mac-elcapitan-wk2 (916.60 KB, application/zip)
2017-04-24 19:44 PDT, Build Bot
no flags
Patch (14.16 KB, patch)
2017-04-24 19:47 PDT, Chris Dumez
no flags
Chris Dumez
Comment 1 2017-04-24 11:57:09 PDT
Chris Dumez
Comment 2 2017-04-24 12:04:23 PDT
Chris Dumez
Comment 3 2017-04-24 13:08:13 PDT
Alex Christensen
Comment 4 2017-04-24 16:36:12 PDT
Comment on attachment 308001 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=308001&action=review > Source/WebKit2/UIProcess/Downloads/DownloadProxy.cpp:161 > + m_suggestedFilename = String(); Shouldn't this be response.suggestedFilename() instead of an empty String? > LayoutTests/http/tests/download/resources/content-disposition-pass.php:2 > +header("Content-Disposition: attachment; filename=PASS.txt"); Let's do more interesting things than just all lowercase attachment and filename to test the case-insensitivity of our checks. > LayoutTests/http/tests/security/anchor-download-allow-sameorigin.html:13 > -<a id="dl" href="/security/resources/attachment.php" download="foo.pdf">the link</a> is in the same origin. > +<a id="dl" href="/media/resources/test.pdf" download="foo.pdf">the link</a> is in the same origin. This change is not in the ChangeLog. Why was it made?
Chris Dumez
Comment 5 2017-04-24 16:51:08 PDT
Comment on attachment 308001 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=308001&action=review >> Source/WebKit2/UIProcess/Downloads/DownloadProxy.cpp:161 >> + m_suggestedFilename = String(); > > Shouldn't this be response.suggestedFilename() instead of an empty String? I do not think so. m_suggestedFilename is initialized when starting the download with the value of the download attribute. It is then used instead of the suggested filename in DownloadProxy::decideDestinationWithSuggestedFilename() if it is not null. So if I reset to null here, it means there is no override and we will end up using the resource's suggested filename in DownloadProxy::decideDestinationWithSuggestedFilename(). >> LayoutTests/http/tests/security/anchor-download-allow-sameorigin.html:13 >> +<a id="dl" href="/media/resources/test.pdf" download="foo.pdf">the link</a> is in the same origin. > > This change is not in the ChangeLog. Why was it made? I'll add it to the Changelog. /security/resources/attachment.php was previously used from convenience but it sets a Content-Disposition header so it is no longer suitable to use for testing the download attribute.
Chris Dumez
Comment 6 2017-04-24 18:29:47 PDT
Build Bot
Comment 7 2017-04-24 19:44:35 PDT
Comment on attachment 308036 [details] Patch Attachment 308036 [details] did not pass mac-wk2-ews (mac-wk2): Output: http://webkit-queues.webkit.org/results/3598478 New failing tests: http/tests/download/anchor-download-attribute-content-disposition.html
Build Bot
Comment 8 2017-04-24 19:44:36 PDT
Created attachment 308048 [details] Archive of layout-test-results from ews104 for mac-elcapitan-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: ews104 Port: mac-elcapitan-wk2 Platform: Mac OS X 10.11.6
Chris Dumez
Comment 9 2017-04-24 19:47:26 PDT
Alex Christensen
Comment 10 2017-04-25 09:26:53 PDT
Comment on attachment 308049 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=308049&action=review > Source/WebKit2/UIProcess/Downloads/DownloadProxy.cpp:157 > +#if !USE(NETWORK_SESSION) Then double check that this works with network session, too, before landing. EWS runs on El Capitan where we don't use network session
Chris Dumez
Comment 11 2017-04-25 09:28:07 PDT
(In reply to Alex Christensen from comment #10) > Comment on attachment 308049 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=308049&action=review > > > Source/WebKit2/UIProcess/Downloads/DownloadProxy.cpp:157 > > +#if !USE(NETWORK_SESSION) > > Then double check that this works with network session, too, before landing. > EWS runs on El Capitan where we don't use network session This code is #if !USE(NETWORK_SESSION) so it is covered by EWS. Locally, I am using NETWORK_SESSION and the tests are passing (including my new one).
Chris Dumez
Comment 12 2017-04-25 09:29:30 PDT
Comment on attachment 308049 [details] Patch Clearing flags on attachment: 308049 Committed r215736: <http://trac.webkit.org/changeset/215736>
Chris Dumez
Comment 13 2017-04-25 09:29:32 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.