diafygi / webcrypto-examples

Web Cryptography API Examples Demo: https://diafygi.github.io/webcrypto-examples/
GNU General Public License v2.0
1.64k stars 193 forks source link

example page will not work with IE11 #12

Closed jedie closed 9 years ago

jedie commented 9 years ago

Because of promise .then() usage. See also: https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Promise/then#Browser_compatibility

Maybe https://github.com/taylorhakes/promise-polyfill will help here?!?

diafygi commented 9 years ago

WebCryptoAPI requires supporting promises, and IE's use of onerror and oncomplete is very out of date. IE shouldn't work in the live table because it doesn't work with the spec.

jedie commented 9 years ago

Thanks for the info.

Seems that "Microsoft Edge" in windows 10 will support promise, see: https://msdn.microsoft.com/library/dn802826%28v=vs.94%29.aspx

Has anybody test the example page with edge?!?