I tried this simple html:
TEST FONT SIZE
Had the same problem in Chrome, later figured out that key cause was
body { -webkit-font-smoothing: antialiased }
changing this to
body { -webkit-font-smoothing: subpixel-antialiased; }
fixed it.