Actually it becomes easier...
Posted Nov 9, 2011 16:32 UTC (Wed) by
khim (subscriber, #9252)
In reply to:
Thunderbird too by mathstuf
Parent article:
Firefox 8 released
Now that there aren't version numbers, web developers will have to start testing for feature compatability.
Actually it's much easier to check for a single "version number" rather then try to parse large and complex "version string" thus it'll make life of web developers easier, not harder.
because I compile my own webkit for it, disabling things like audio, video, geolocation, database support, and mouse grabbing when that comes along
And this is why I think UA check is the only way to go. It's one thing to support few different browsers with a sane set of features, it's another to use application platform which can have important parts just randomly removed. It's the same thing which plagues desktop linux for ages - no need to have another repeat of the same story. It's one thing to cope with deficiencies of some browsers, but to now cope with randomly crippled ones? No, no need to spend time on that.
Thankfully solution is simple:
1. Check the browser.
2. Check the version number (now when it's just a number it's easy).
3. Refuse to support anything beyond the "big four".
3a. If someone will manage to start your app on unsupported browser - it's his (or her) problem: you can safely close all bugs with "WONTFIX" resolution.
This may be not all that friendly to the DIY guys, but at least this way you'll know that you can safely use local storage, for example (all major browsers support it for many years!) and now worry about fallbacks.
(
Log in to post comments)