diff --git a/web/text_layer_builder.js b/web/text_layer_builder.js index 45de97d40..04f166e69 100644 --- a/web/text_layer_builder.js +++ b/web/text_layer_builder.js @@ -156,7 +156,12 @@ var TextLayerBuilder = (function TextLayerBuilderClosure() { textDiv.style.fontFamily = style.fontFamily; textDiv.textContent = geom.str; - textDiv.dataset.fontName = geom.fontName; + // |fontName| is only used by the Font Inspector. This test will succeed + // when e.g. the Font Inspector is off but the Stepper is on, but it's + // not worth the effort to do a more accurate test. + if (PDFJS.pdfBug) { + textDiv.dataset.fontName = geom.fontName; + } // Storing into dataset will convert number into string. if (angle !== 0) { textDiv.dataset.angle = angle * (180 / Math.PI);