mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-20 07:08:08 +02:00
Add another preference check to detect if web fonts are disabled in Firefox
This commit is contained in:
parent
71d257ce5b
commit
f607e89a65
1 changed files with 3 additions and 2 deletions
|
@ -376,8 +376,9 @@ ChromeActions.prototype = {
|
|||
'updateControlState' in getChromeWindow(this.domWindow).gFindBar;
|
||||
},
|
||||
supportsDocumentFonts: function() {
|
||||
var pref = getIntPref('browser.display.use_document_fonts', 1);
|
||||
return !!pref;
|
||||
var prefBrowser = getIntPref('browser.display.use_document_fonts', 1);
|
||||
var prefGfx = getBoolPref('gfx.downloadable_fonts.enabled', true);
|
||||
return (!!prefBrowser && prefGfx);
|
||||
},
|
||||
fallback: function(url, sendResponse) {
|
||||
var self = this;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue