Which browser versions have full support for using numeric values for the font-weight property? This includes Internet Explorer, Firefox, Chrome, Safari, iOS Safari, and Android Browser.
While most browsers support the keyword values 'bold' and 'normal', I have not been able to find an up-to-date list of browsers that fully support numeric values for the CSS font-weight property. The only information I could find is from a blog post titled Font-weight is still broken, which showed inconsistencies in rendering numeric weights in browsers prior to IE8's release in 2009.
For example:
<link href='http://fonts.googleapis.com/css?family=Roboto:300,400,700' rel='stylesheet' type='text/css'>
<style>
body { font-family: 'Roboto', sans-serif; }
.light { font-weight:300 }
.normal { font-weight:400 }
.bold { font-weight:700 }
</style>