1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-22 16:18:08 +02:00

Remove useless assignment of availableSpace in the src/core/xfa/template.js file (issue 13829, 13835)

This commit is contained in:
Jonas Jenwald 2021-08-03 10:58:57 +02:00
parent 01fd0f59b7
commit 705d1cfad3

View file

@ -2332,12 +2332,6 @@ class ExclGroup extends XFAObject {
if (!checkDimensions(this, availableSpace)) {
return HTMLResult.FAILURE;
}
availableSpace = {
width: this.w === "" ? availableSpace.width : this.w,
height: this.h === "" ? availableSpace.height : this.h,
};
const filter = new Set(["field"]);
if (this.layout.includes("row")) {