Bug 1610821 Comment 9 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Okay, I’ll mention that in my site compat doc.

Once thing I just noticed is, Firefox no longer opens a file picker when an detached `<input type="file">` is clicked, because the hack has been removed with the patch. It seems this works in Chrome. Is this intentional or should I file a bug for that?

```js
const input = document.createElement('input');
input.type = 'file';
input.click();
```
Okay, I’ll mention that in my site compat doc.

One thing I just noticed is, Firefox no longer opens a file picker when an detached `<input type="file">` is clicked, because the hack has been removed with the patch. It seems this works in Chrome. Is this intentional or should I file a bug for that?

```js
const input = document.createElement('input');
input.type = 'file';
input.click();
```
Okay, I’ll mention that in my site compat doc.

One thing I just noticed is, Firefox no longer opens a file picker when a detached `<input type="file">` is clicked, because the hack has been removed with the patch. It seems this works in Chrome. Is this intentional or should I file a bug for that?

```js
const input = document.createElement('input');
input.type = 'file';
input.click();
```

Back to Bug 1610821 Comment 9