1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Prevent browser console errors during testing

The `Driver._cleanup` method is removing all stylesheets between test runs, which causes "TypeError: styleElement.parentNode is null" console errors in `FontLoader.clear`.

As can also be seen during various tests, some of the changes I made in PR 7972 unfortunately causes console errors.
It seems that I didn't test this properly, since it *should* have been obvious to me that while tests are triggered using Node.js, the files in question are run within the *browser*.
My apologies for not testing this thoroughly, and for causing unnecessary churn in the code!
This commit is contained in:
Jonas Jenwald 2017-02-05 13:23:42 +01:00
parent cae8d97c4c
commit e416032b38
4 changed files with 9 additions and 13 deletions

View file

@ -19,7 +19,7 @@
var base64alphabet =
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
function decodeFontData(base64) {
function decodeFontData(base64) { // eslint-disable-line no-unused-vars
var result = [];
var bits = 0, bitsLength = 0;
@ -62,7 +62,7 @@ function encodeFontData(data) {
return buffer;
}
function ttx(data, callback) {
function ttx(data, callback) { // eslint-disable-line no-unused-vars
var xhr = new XMLHttpRequest();
xhr.open('POST', '/ttx');
@ -82,13 +82,9 @@ function ttx(data, callback) {
xhr.send(encodedData);
}
function verifyTtxOutput(output) {
function verifyTtxOutput(output) { // eslint-disable-line no-unused-vars
var m = /^<error>(.*?)<\/error>/.exec(output);
if (m) {
throw m[1];
}
}
exports.decodeFontData = decodeFontData;
exports.ttx = ttx;
exports.verifyTtxOutput = verifyTtxOutput;