Ember.js browser support? - html

Is there a documented list of desktop browsers and versions which support Ember.js apps? That is, if I say an app developed in Ember.js will support IE 9+, FF 11+, Chrome 17+, Safari 5+, will I be overreaching or underreaching? If support is fluid, what does it depend on?

When doing new releases we run tests across all platforms available on BrowserStack. We have a couple test failures on some of the older platforms, but in practice they all do work. The biggest concern if you support older versions of IE is performance. However, it should still work properly. It definitely supports all modern browsers and mobile platforms, though built in touch support is limited.

It has been announced that Ember 2.0 will support IE9+, and that the 1.13.x series will be the last version to support IE 8.

Browser Supportability For Ember 2.x
Base on the Github README, https://github.com/emberjs/ember.js/
The following browsers versions are supported.

Related

Where can I track the status of features (including in-development) in major browsers?

To leverage the latest web technologies in our applications it is good to know the status of features (like when using caniuse.com) and also the roadmap of major web browsers.
I happened to see this page which shows the roadmap for Chrome web browser.
Is there something equivalent for other major browsers like Firefox, Safari, Edge and so on?
The MDN repository "contains compatibility data for Web technologies as displayed on MDN"
Can I use "provides up-to-date browser support tables" for Web technologies and features
ECMAScript compatibility tables provides status of ECMAScript support like caniuse
HTML5TEST lets you know how well your browser supports HTML5
WHAT WEB CAN DO TODAY is something like HTML5TEST
Browser Platform Status Tracker tracks engine features
Google Chrome roadmap and features (includes in-development etc)
Firefox implementation and standardization roadmap (seems to have been abandoned)
See Firefox Specification Positions instead
Microsoft Edge platform status
Safari webKit feature status
Opera (same as chrome)
See Learn how browsers are working together to make it easier to build for the web
See Interop 2022 Dashboard
Note that Google Chrome, Microsoft Edge and Opera are all Chromium-based browsers that use Blink browser engine.
Thanks to this GitHub gist for its help.

What browsers does AngularJS work with?

This can be a most common question. But no any clue about browser versions. More over, Angular site itself says as following.
What browsers does Angular work with?
We run our extensive test suite against the following browsers: the latest versions of Chrome, Firefox, Safari, and Safari for iOS, as well as Internet Explorer versions 9-11. See Internet Explorer Compatibility for more details on supporting legacy IE browsers.
If a browser is untested, it doesn't mean it won't work. You can also expect browsers to work that share a large part of their codebase with a browser we test, such as Opera 15 or newer (uses the Blink engine), or the various Firefox derivatives.
— AngularJS FAQ - What browsers does AngularJS work with?
However, there is no any note which versions are supported. I googled, but couldn't find. Any one let me know what browsers and their versions do support which version of angular ?
Browser support of AngularJS:
Internet Explorer: 9+
Versions 1.2 and later of AngularJS do not support Internet Explorer versions 6 or 7.
Versions 1.3 and later of AngularJS dropped support for Internet Explorer 8.
Opera 15+
Firefox, Safari, and Google Chrome
As mentioned in a StackOverflow Question here: Which versions of firefox does angularjs support?, since they say which IE version they support and not Chrome, Safari, or Firefox, it's safe to assume all the versions are working.
Version Support Status
Any version branch not shown in the following table (e.g. 1.6.x) is no longer being developed.
Version Status Comments
1.2.x Long Term Support Last version to provide IE 8 support
1.7.x Long Term Support See Long Term Support section below.
Long Term Support
At this time we will focus exclusively on providing fixes to bugs that satisfy at least one of the following criteria:
A security flaw is detected in the 1.7.x branch of the framework
One of the major browsers releases a version that will cause current production applications using AngularJS 1.7.x to stop working
The jQuery library releases a version that will cause current production applications using AngularJS 1.7.x to stop working.
— AngularJS Documentation - Version Support Status
According to AngularJS document:Internet Explorer Compatibility, the answer should be IE 9。
AngularJS 1.3 has dropped support for IE8. Read more about it on our blog. AngularJS 1.2 will continue to support IE8, but the core team does not plan to spend time addressing issues specific to IE8 or earlier.
The project currently supports and will attempt to fix bugs for IE9 and above. The continuous integration server runs all the tests against IE9, IE10, and IE11.

Which Internet Explorer versions does HTML5 BOILERPLATE support?

Can someone please elaborate on which versions of Internet Expolorer the HTML5 ★ BOILERPLATE framework supports?
Does it have support for IE versions 7 & 8?
The current version supports IE8+. From https://github.com/h5bp/html5-boilerplate#features:
Cross-browser compatible (Chrome, Firefox, IE8+, Opera, Safari).
Boilderplate v4 supports IE6+, but is no longer maintained:
HTML5 Boilerplate v4 provides legacy browser support (IE 6+, Firefox 3.6+, Safari 4+), but is no longer actively developed.
HTML 5 doesn't work in most versions of IE. So HTML5 boilerplate uses Modenizer and X-UA-Compatible to make most of it work. You can read about all of it on their github profile.
SEE DOCS:
https://github.com/h5bp/html5-boilerplate/blob/v4.2.0/doc/html.md
https://github.com/h5bp/html5-boilerplate/blob/v4.2.0/doc/html.md#modernizr
https://github.com/h5bp/html5-boilerplate/blob/v4.2.0/doc/html.md#x-ua-compatible

Support for 'webworker' in higher version of android

I Tested html5 feature 'webworker' on safari 5.1, iphone 4 as well as android mobile with OS 2.3. The feature works perfectly
But there is no support for 'webworker' in higher versions of android OS (browser)
If anyone know the answers please reply.
the answer is no you can see all compatibility of web worker here on can i use

HTML5 Application Cache not working in ie8+ so need its alternatives for ie

HTML5 Application Cache not working in ie8+, so i need some of the solution which makes my resource available even in offline mode in ie8+ browsers, in all other browsers the html5 appcache is working fine, only had problem with ie, so need solution for ie8+.
Try this: Researching HTML5 Offline. They suggest Google Gears, even though it's deprecated (post is from August 2010).
Ie 8 and all 8+ versions does not support html5 offline cache, and even 9 does not support this but recently 10 has a developer document which has this support.