Bug 271705

Summary: iOS: <input type="file" webkitdirectory> doesn't work.
Product: WebKit Reporter: Daniel Jacobs <danielhunterjacobs>
Component: FormsAssignee: Lily Spiniolas <lily_n_spiniolas2>
Status: RESOLVED FIXED    
Severity: Normal CC: akeerthi, ap, cdumez, karlcow, webkit-bug-importer, wenson_hsieh
Priority: P2 Keywords: InRadar
Version: Safari 17   
Hardware: iPhone / iPad   
OS: Unspecified   

Description Daniel Jacobs 2024-03-26 06:57:21 PDT
https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/webkitdirectory#result on Safari on iOS does not let you select a directory.
Comment 1 Alexey Proskuryakov 2024-03-26 13:03:58 PDT
Looks like this is the only code we have referencing this attribute:

// As of Sept 2017, Chrome and Firefox both only populate webkitEntries when the webkitdirectory flag is unset.
// We do the same for consistency.
if (input.hasAttributeWithoutSynchronization(webkitdirectoryAttr))
    return { };

Weird that it got documented somewhere, and even specced.
Comment 2 Karl Dubost 2024-03-26 20:12:33 PDT
webkitdirectory was implemented in Gecko (Firefox) on June 2016
https://bugzilla.mozilla.org/show_bug.cgi?id=1258489
This was implemented for compatibility reasons with *Chrome* (when Chrome was using webkit) for websites like mega.nz in the past.

There was at the time a spec issue opened on the compat spec.
https://github.com/whatwg/compat/issues/54

It was eventually added to the File and Directory Entries API, Draft Community Group Report, which is not on the W3C standard track
https://wicg.github.io/entries-api/#html-forms

The document is clear
> NOTE: The APIs described by this document was initially implemented in Google Chrome. Other browsers (at this time: Edge, Firefox and Safari) are starting to support subsets of Chrome’s APIs and behavior. The intent of this document is to specify the common subset to ensure that the implementations are interoperable.


This is also in WebKit code. 
https://searchfox.org/mozilla-central/rev/fb2ad9ca7150890da5cadc458acdd10c87fd9a12/dom/html/HTMLInputElement.h#712-714

In addition to Safari on iOS (this bug), note that this is not available on Firefox Android.

I don't remember seeing anything recently about spec work around directly uploads.
Comment 3 Radar WebKit Bug Importer 2024-03-26 20:28:26 PDT
<rdar://problem/125457578>
Comment 4 Aditya Keerthi 2024-03-26 20:38:02 PDT
Just to correct Alexey's comment, as that is not the only use of the attribute. The important use is here:

```
bool FileInputType::allowsDirectories() const
{
    ASSERT(element());
    if (!element()->document().settings().directoryUploadEnabled())
        return false;
    return element()->hasAttributeWithoutSynchronization(webkitdirectoryAttr);
}
```

Which is set on `FileChooserSettings`. However, we are currently not reading the bit, and have not yet implemented the feature on iOS.
Comment 5 Lily Spiniolas 2024-10-03 21:30:52 PDT
Pull request: https://github.com/WebKit/WebKit/pull/34675
Comment 6 EWS 2024-10-04 09:34:22 PDT
Committed 284685@main (ca350c23acde): <https://commits.webkit.org/284685@main>

Reviewed commits have been landed. Closing PR #34675 and removing active labels.