Reputation: 10138
What browsers is supported by stable Dart 1.1.1 - where can I find such information or results of tests done on browsers. I want be sure what I can except in future version.
It is not clear for me what mean "major browsers" since it is not clear if it is tested. I plan to use dart since can be nice in doing advanced application.
I think only about compatibility of Dart/JavaScript - not interested in pure Dart in Chromium.
Upvotes: 2
Views: 2965
Reputation: 658057
It's not really an answer but to long for a comment:
Dartium is intended for development only.
JavaScript generated from Dart is currently the only supported scenario of Dart for production use.
Dart or more specific the generated JS helps a lot in abstracting browser differences away but there are also still a lot of open issues, some with known workarounds and some without.
I doubt there can or will be a perfect solution even in the future. How good or bad someone finds the support of one of the browsers listed in @PixelElephant s answer is mostly based on opinion and/or what features someone wants to use.
If you have issues with some of these browsers, post an issue. Common features are likely to be fixed in the short therm others may take longer (also depending on complexity).
Upvotes: 2
Reputation: 21403
From the Dart FAQ:
Q. What browsers do you support as JavaScript compilation targets?
We’re currently aiming to support the following browsers:
Internet Explorer, versions 9 and 10. Firefox, latest version. Chrome, latest version. Safari for desktop, version 6.
Though "We're currently aiming to support" certainly doesn't inspire the same level of confidence that "We support" would.
Upvotes: 2