css-font-rendering icon indicating copy to clipboard operation
css-font-rendering copied to clipboard

Feature detection?

Open superpoincare opened this issue 9 years ago • 0 comments

I know old browsers will just ignore something like:

font-display: swap;

in the CSS, but there are cases where feature detection is useful.

For example I want to test the feature and use Bram Stein's fontfaceobserver for browsers which do not support it.

Such as

if(browsersupportsfontdisplay) { //do nothing } else { // run fontfaceobserver. }

So is there a feature detection code?

superpoincare avatar Mar 25 '16 18:03 superpoincare