From 3e003245b18341d089c3cd05f03beeff6ffd5506 Mon Sep 17 00:00:00 2001 From: Brendan Dahl Date: Tue, 3 Aug 2021 15:55:13 -0700 Subject: [PATCH] [XFA] Add alt text for images. (bug 1723418) Not many XFA PDFs have alt text. Some examples: bug1723422.pdf xfa_bug1718670_1.pdf xfa_issue13611.pdf xfa_issue13633.pdf xfa_issue13634.pdf --- src/core/xfa/template.js | 2 ++ test/unit/xfa_tohtml_spec.js | 39 ++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/src/core/xfa/template.js b/src/core/xfa/template.js index 964edbac7..72e9e9cd4 100644 --- a/src/core/xfa/template.js +++ b/src/core/xfa/template.js @@ -3312,12 +3312,14 @@ class Image extends StringObject { }; break; } + const parent = this[$getParent](); return HTMLResult.success({ name: "img", attributes: { class: ["xfaImage"], style, src: URL.createObjectURL(blob), + alt: parent ? ariaLabel(parent[$getParent]()) : null, }, }); } diff --git a/test/unit/xfa_tohtml_spec.js b/test/unit/xfa_tohtml_spec.js index 4e43f891e..0087365af 100644 --- a/test/unit/xfa_tohtml_spec.js +++ b/test/unit/xfa_tohtml_spec.js @@ -13,6 +13,7 @@ * limitations under the License. */ +import { isNodeJS } from "../../src/shared/is_node.js"; import { XFAFactory } from "../../src/core/xfa/factory.js"; describe("XFAFactory", function () { @@ -138,6 +139,44 @@ describe("XFAFactory", function () { ); }); + it("should have an alt attribute from toolTip", function () { + if (isNodeJS) { + pending("Image is not supported in Node.js."); + } + const xml = ` + + + + + + + + + `; + const factory = new XFAFactory({ "xdp:xdp": xml }); + + expect(factory.numberPages).toEqual(1); + + const pages = factory.getPages(); + const field = searchHtmlNode(pages, "name", "img"); + + expect(field.attributes.alt).toEqual("alt text"); + }); + it("should have a maxLength property", function () { const xml = `