@ font-face src: local - Como usar a fonte local se o usuário já a possui?

Qual é a maneira correta de usar@font-face para que o navegador não baixe a fonte se o usuário já a possuir?

Estou usando o @ font-face para definir o DejaVu, que já está instalado no meu sistema (linux). O Firefox não está baixando a fonte, mas o Chromium está sempre baixando!

Meu código CSS, com base emesquilo de fonte eaquela questão parece com isso:

@font-face {
    font-family: 'DejaVu Serif';
    src: url('DejaVuSerif-webfont.eot');
    src: local('DejaVu Serif'), url('DejaVuSerif-webfont.woff') format('woff'), url('DejaVuSerif-webfont.ttf') format('truetype'), url('DejaVuSerif-webfont.svg#webfontCFu7RF0I') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* ... @font-face definitions for italic and bold omitted ... */

@font-face {
    font-family: 'DejaVu Serif';
    src: url('DejaVuSerif-BoldItalic-webfont.eot');
    src: local('DejaVu Serif Bold Italic'), url('DejaVuSerif-BoldItalic-webfont.woff') format('woff'), url('DejaVuSerif-BoldItalic-webfont.ttf') format('truetype'), url('DejaVuSerif-BoldItalic-webfont.svg#webfontQAewh7pf') format('svg');
    font-weight: bold;
    font-style: italic;
}

questionAnswers(2)

yourAnswerToTheQuestion