On a web page that does not contain a viewport
meta tag, most mobile browsers will "boost" some or all of the fonts on the page to a size larger than what the css specifies. On mobile Safari, for instance, a specified size of 7px
will be boosted to something like 12px
.
You can read out the boosted value by using getComputedStyle. My question is, is there a reliable way to read out the unboosted value? I.e. if the font is boosted to 12, I want to know that it started out at 7.