Bug 1565153 Comment 0 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Hi,

Firefox download custom font for following situation: 

01.
`
@font-face {
	font-family: 'whatever';
}
`
02. 
`
<div style="font-family: whatever"></div>
`
Which is wrong and for empty pages there is no need to downloading fonts.
Hi,

Firefox download custom font for following situation: 

`
// css
@font-face {
	font-family: 'whatever';
}

// html
<div style="font-family: whatever"></div>
`
Which is wrong and for empty pages there is no need to downloading fonts.
Hi,

Firefox download custom font for following situation: 

`
@font-face {
	font-family: 'whatever';
}
`
`
<div style="font-family: whatever"></div>
`
Which is wrong and for empty pages there is no need to downloading fonts.

Back to Bug 1565153 Comment 0