What is the status of the HTML 5 File API today in different browsers?

I am currently working on a file API. After the initial investigation, it turned out that Chrome, Firefox (new versions) have good support for this. However, IE, Opera did not implement it, and Safari partially supports this. Can someone please let me know

  • Does Opera and IE support API files? Is this a plan for a future release?
  • Safari says it partially implemented the File API. How partial is this implemented? Have they implemented the XHRHttpRequest.send (File) method? So that we can send the file object to the server.

I understand that Chrome and Firefox are only two browsers today to have drag and drop file support in web browsers functions. Am i right?

+3
source share
3 answers

Yes, the file API has been successfully implemented in WebKit browsers to date. In Gecko , it is partially implemented, but for another browser it is not yet implemented. For more information, see Comparison of Layout Mechanisms (HTML5) .

+7
source

Here are all the details of gory in easy digestion. Well, nothing about HTML5 support is very simple, but it is the best source of version information:

http://caniuse.com/fileapi

+3
source

For status in File APIs and any other HTML5 APIs, keep the HTML5 Readiness tab

0
source

Source: https://habr.com/ru/post/1788429/


All Articles