My solution to the problem is to completely remove Google Webfonts and instead download the fonts to the web server and call them through CSS, for example:
@font-face { font-family: 'Droid Sans'; src: url('fonts/DroidSans-webfont.eot'); src: url('fonts/DroidSans-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/DroidSans-webfont.woff') format('woff'), url('fonts/DroidSans-webfont.ttf') format('truetype'), url('../fonts/DroidSans-webfont.svg#DroidSansRegular') format('svg'); font-weight: normal; font-style: normal; }
Google websites are open, so we wonβt need to look for downloads for fonts.
This solution works in both Dolphin and Chrome for Android.
source share