Merge pull request #13472 from Snuffleupagus/checkbox-print-evaluator
Don't change options of the globally used `PartialEvaluator` in the "should render checkbox with fallback font for printing" unit-test
This commit is contained in:
commit
706c27b9d4
@ -229,9 +229,13 @@ class PartialEvaluator {
|
||||
return shadow(this, "_pdfFunctionFactory", pdfFunctionFactory);
|
||||
}
|
||||
|
||||
clone(newOptions = DefaultPartialEvaluatorOptions) {
|
||||
clone(newOptions = null) {
|
||||
const newEvaluator = Object.create(this);
|
||||
newEvaluator.options = newOptions;
|
||||
newEvaluator.options = Object.assign(
|
||||
Object.create(null),
|
||||
this.options,
|
||||
newOptions
|
||||
);
|
||||
return newEvaluator;
|
||||
}
|
||||
|
||||
@ -3948,9 +3952,7 @@ class TranslatedFont {
|
||||
// When parsing Type3 glyphs, always ignore them if there are errors.
|
||||
// Compared to the parsing of e.g. an entire page, it doesn't really
|
||||
// make sense to only be able to render a Type3 glyph partially.
|
||||
const type3Options = Object.create(evaluator.options);
|
||||
type3Options.ignoreErrors = false;
|
||||
const type3Evaluator = evaluator.clone(type3Options);
|
||||
const type3Evaluator = evaluator.clone({ ignoreErrors: false });
|
||||
type3Evaluator.parsingType3Font = true;
|
||||
|
||||
const translatedFont = this.font,
|
||||
|
@ -2281,7 +2281,7 @@ describe("annotation", function () {
|
||||
{ ref: buttonWidgetRef, data: buttonWidgetDict },
|
||||
]);
|
||||
const task = new WorkerTask("test print");
|
||||
partialEvaluator.options = { ignoreErrors: true };
|
||||
const checkboxEvaluator = partialEvaluator.clone({ ignoreErrors: true });
|
||||
|
||||
const annotation = await AnnotationFactory.create(
|
||||
xref,
|
||||
@ -2293,7 +2293,7 @@ describe("annotation", function () {
|
||||
annotationStorage.set(annotation.data.id, { value: true });
|
||||
|
||||
const operatorList = await annotation.getOperatorList(
|
||||
partialEvaluator,
|
||||
checkboxEvaluator,
|
||||
task,
|
||||
false,
|
||||
annotationStorage
|
||||
|
Loading…
x
Reference in New Issue
Block a user