Toni Michel Caubet
Toni Michel Caubet

Reputation: 20183

Accept attribute for input[type=file] allows other extensions

Anybody knows why this input accepts .php file extensions?

( At least in the latest version of chrome )

<input type="file" accept=".doc,.pdf,.txt,.rtl">

enter image description here

Upvotes: 5

Views: 2679

Answers (1)

Kaiido
Kaiido

Reputation: 137131

This is apparently a Mac Os only bug.
I wasn't able to reproduce it from my win10 VM, but it is still there in v.55.0.2861.0 canary.


The problem seems to come from the .txt.
It's like it will accept any text/* files, when this extension is set.

You can star this chromium issue which treats of the same underlying issue (with a different extension).

<input type="file" accept=".txt">

Upvotes: 4

Related Questions