Merge pull request #12446 from Snuffleupagus/firefox-print-RenderingCancelledException

[Firefox] Stop logging `RenderingCancelledException`s as errors when printing
This commit is contained in:
Tim van der Meij 2020-10-04 23:38:31 +02:00 committed by GitHub
commit b3e32e2001
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,9 +13,9 @@
* limitations under the License.
*/
import { RenderingCancelledException, shadow } from "pdfjs-lib";
import { CSS_UNITS } from "./ui_utils.js";
import { PDFPrintServiceFactory } from "./app.js";
import { shadow } from "pdfjs-lib";
// Creates a placeholder with div and canvas with right size for the page.
function composePage(
@ -85,8 +85,10 @@ function composePage(
}
obj.done();
},
function (error) {
console.error(error);
function (reason) {
if (!(reason instanceof RenderingCancelledException)) {
console.error(reason);
}
if (currentRenderTask === thisRenderTask) {
currentRenderTask.cancel();