Browse Source

Cleanup Moz support in FontLoader

Julian Viereck 14 years ago
parent
commit
06cef910fb
  1. 199
      fonts.js
  2. 7
      worker.js

199
fonts.js

@ -290,152 +290,69 @@ var FontLoader = {
return rule; return rule;
}, },
bind: function(fonts, callback) { bind: function(fontObj) {
// If this isn't Gecko, we assume it's WebKit. See notes in bindWebKit. // If this isn't Gecko, we assume it's WebKit. See notes in bindWebKit.
if (!isGecko) { if (!isGecko) {
var fontObj = fonts[0];
this.bindWebKit(fontObj.loadedName, fontObj); this.bindWebKit(fontObj.loadedName, fontObj);
return; } else {
var rule = this.bindDOM(fontObj);
FontLoader.prepareFontLoadEvent(fontObj, rule);
} }
},
function checkFontsLoaded() { // Set things up so that at least one pdfjsFontLoad event is
for (var i = 0; i < objs.length; i++) { // dispatched when all the @font-face |rules| for |names| have been
var fontObj = objs[i]; // loaded in a subdocument. It's expected that the load of |rules|
if (fontObj.loading) { // has already started in this (outer) document, so that they should
return false; // be ordered before the load in the subdocument.
} prepareFontLoadEvent: function(fontObj, rule) {
} /** Hack begin */
// There's no event when a font has finished downloading so the
document.documentElement.removeEventListener( // following code is a dirty hack to 'guess' when a font is
'pdfjsFontLoad', checkFontsLoaded, false); // ready. This code will be obsoleted by Mozilla bug 471915.
//
callback(); // The only reliable way to know if a font is loaded in Gecko
return true; // (at the moment) is document.onload in a document with
} // a @font-face rule defined in a "static" stylesheet. We use a
// subdocument in an <iframe>, set up properly, to know when
var rules = [], names = [], objs = []; // our @font-face rule was loaded. However, the subdocument and
// outer document can't share CSS rules, so the inner document
for (var i = 0; i < fonts.length; i++) { // is only part of the puzzle. The second piece is an invisible
var font = fonts[i]; // div created in order to force loading of the @font-face in
var obj = font; // the *outer* document. (The font still needs to be loaded for
// its metrics, for reflow). We create the div first for the
objs.push(obj); // outer document, then create the iframe. Unless something
// goes really wonkily, we expect the @font-face for the outer
var str = ''; // document to be processed before the inner. That's still
var rule = this.bindDOM(font); // fragile, but seems to work in practice.
if (rule) { //
rules.push(rule); // The postMessage() hackery was added to work around chrome bug
names.push(obj.loadedName); // 82402.
}
} // XXX we should have a time-out here too, and maybe fire
// pdfjsFontLoadFailed?
// console.log("bind", fonts, rules, names); var src = '<!DOCTYPE HTML><html><head>';
src += '<style type="text/css">';
this.listeningForFontLoad = false; src += rule;
if (!isWorker && rules.length) { src += '</style>';
FontLoader.prepareFontLoadEvent(rules, names, objs); src += '</script>';
} src += '</head><body>';
src += '<p style="font-family:\'' + fontObj.loadedName + '\'">Hi</p>'
if (!checkFontsLoaded()) { src += '</body></html>';
document.documentElement.addEventListener( var frame = document.createElement('iframe');
'pdfjsFontLoad', checkFontsLoaded, false); frame.src = 'data:text/html,' + src;
} frame.setAttribute('style',
'visibility: hidden;' +
return objs; 'width: 10px; height: 10px;' +
}, 'position: absolute; top: 0px; left: 0px;');
// Set things up so that at least one pdfjsFontLoad event is document.body.appendChild(frame);
// dispatched when all the @font-face |rules| for |names| have been
// loaded in a subdocument. It's expected that the load of |rules| frame.onload = function() {
// has already started in this (outer) document, so that they should Objects.resolve(fontObj.loadedName);
// be ordered before the load in the subdocument. }
prepareFontLoadEvent: function(rules, names, objs) { /** Hack end */
/** Hack begin */ }
// There's no event when a font has finished downloading so the };
// following code is a dirty hack to 'guess' when a font is
// ready. This code will be obsoleted by Mozilla bug 471915.
//
// The only reliable way to know if a font is loaded in Gecko
// (at the moment) is document.onload in a document with
// a @font-face rule defined in a "static" stylesheet. We use a
// subdocument in an <iframe>, set up properly, to know when
// our @font-face rule was loaded. However, the subdocument and
// outer document can't share CSS rules, so the inner document
// is only part of the puzzle. The second piece is an invisible
// div created in order to force loading of the @font-face in
// the *outer* document. (The font still needs to be loaded for
// its metrics, for reflow). We create the div first for the
// outer document, then create the iframe. Unless something
// goes really wonkily, we expect the @font-face for the outer
// document to be processed before the inner. That's still
// fragile, but seems to work in practice.
//
// The postMessage() hackery was added to work around chrome bug
// 82402.
var div = document.createElement('div');
div.setAttribute('style',
'visibility: hidden;' +
'width: 10px; height: 10px;' +
'position: absolute; top: 0px; left: 0px;');
var html = '';
for (var i = 0; i < names.length; ++i) {
html += '<span style="font-family:' + names[i] + '">Hi</span>';
}
div.innerHTML = html;
document.body.appendChild(div);
if (!this.listeningForFontLoad) {
window.addEventListener(
'message',
function(e) {
var fontNames = JSON.parse(e.data);
for (var i = 0; i < objs.length; ++i) {
var font = objs[i];
font.loading = false;
}
var evt = document.createEvent('Events');
evt.initEvent('pdfjsFontLoad', true, false);
document.documentElement.dispatchEvent(evt);
},
false);
this.listeningForFontLoad = true;
}
// XXX we should have a time-out here too, and maybe fire
// pdfjsFontLoadFailed?
var src = '<!DOCTYPE HTML><html><head>';
src += '<style type="text/css">';
for (var i = 0; i < rules.length; ++i) {
src += rules[i];
}
src += '</style>';
src += '<script type="application/javascript">';
var fontNamesArray = '';
for (var i = 0; i < names.length; ++i) {
fontNamesArray += '"' + names[i] + '", ';
}
src += ' var fontNames=[' + fontNamesArray + '];\n';
src += ' window.onload = function () {\n';
// src += ' parent.postMessage(JSON.stringify(fontNames), "*");\n';
src += ' }';
src += '</script></head><body>';
for (var i = 0; i < names.length; ++i) {
src += '<p style="font-family:\'' + names[i] + '\'">Hi</p>';
}
src += '</body></html>';
var frame = document.createElement('iframe');
frame.src = 'data:text/html,' + src;
frame.setAttribute('style',
'visibility: hidden;' +
'width: 10px; height: 10px;' +
'position: absolute; top: 0px; left: 0px;');
document.body.appendChild(frame);
frame.onload = function() {
Objects.resolve(names[0]);
}
/** Hack end */
}
};
if (!isWorker) { if (!isWorker) {
FontLoader.setup(); FontLoader.setup();

7
worker.js

@ -136,7 +136,7 @@ var Promise = (function() {
resolve: function(data) { resolve: function(data) {
if (this.isResolved) { if (this.isResolved) {
throw "A Promise can be resolved only once"; throw "A Promise can be resolved only once " + this.name;
} }
this.isResolved = true; this.isResolved = true;
@ -229,10 +229,7 @@ var WorkerPDFDoc = (function() {
Objects.resolve(objId, fontObj); Objects.resolve(objId, fontObj);
} else { } else {
Objects.setData(objId, fontObj); Objects.setData(objId, fontObj);
FontLoader.bind([fontObj], function() { FontLoader.bind(fontObj);
console.log("loaded", fontObj.loadedName);
Objects.resolve(objId);
});
} }
}); });

Loading…
Cancel
Save