[Webkit-unassigned] [Bug 271705] iOS: <input type="file" webkitdirectory> doesn't work.
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Mar 26 20:38:02 PDT 2024
https://bugs.webkit.org/show_bug.cgi?id=271705
--- Comment #4 from Aditya Keerthi <akeerthi at apple.com> ---
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.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20240327/f83cbd8b/attachment-0001.htm>
More information about the webkit-unassigned
mailing list