From 4b3c4c45c1d12c908cd366088f87bbb6bf8b2726 Mon Sep 17 00:00:00 2001 From: Daniel Jacobs Date: Thu, 26 Sep 2024 12:14:42 -0400 Subject: [PATCH 1/2] Add note about lack of proper support for webkitdirectory on mobile --- api/HTMLInputElement.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/api/HTMLInputElement.json b/api/HTMLInputElement.json index 093c1fbc482391..8d7401e315fbbc 100644 --- a/api/HTMLInputElement.json +++ b/api/HTMLInputElement.json @@ -3005,7 +3005,10 @@ "chrome": { "version_added": "7" }, - "chrome_android": "mirror", + "chrome_android": { + "version_added": "18", + "notes": "While this property is recognized, the File API does not actually allow directory selection. See bug 40248532." + }, "edge": { "version_added": "13" }, @@ -3024,7 +3027,10 @@ "safari": { "version_added": "11.1" }, - "safari_ios": "mirror", + "safari_ios": { + "version_added": "11.3", + "notes": "While this property is recognized, the File API does not actually allow directory selection. See bug 271705." + }, "samsunginternet_android": "mirror", "webview_android": "mirror", "webview_ios": "mirror" From 30a388769e2a874c1211d46e674b3e5d2c863732 Mon Sep 17 00:00:00 2001 From: Daniel Jacobs Date: Fri, 4 Oct 2024 09:08:42 -0400 Subject: [PATCH 2/2] Mark webdkitdirectory as unsupported on mobile --- api/HTMLInputElement.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/api/HTMLInputElement.json b/api/HTMLInputElement.json index 8d7401e315fbbc..0bb217a084f7a1 100644 --- a/api/HTMLInputElement.json +++ b/api/HTMLInputElement.json @@ -3006,8 +3006,9 @@ "version_added": "7" }, "chrome_android": { - "version_added": "18", - "notes": "While this property is recognized, the File API does not actually allow directory selection. See bug 40248532." + "version_added": false, + "impl_url": "https://crbug.com/40248532", + "notes": "The property can be set, but has no effect." }, "edge": { "version_added": "13" @@ -3028,8 +3029,9 @@ "version_added": "11.1" }, "safari_ios": { - "version_added": "11.3", - "notes": "While this property is recognized, the File API does not actually allow directory selection. See bug 271705." + "version_added": false, + "impl_url": "https://webkit.org/b/271705", + "notes": "The property can be set, but has no effect." }, "samsunginternet_android": "mirror", "webview_android": "mirror",