Browse Source

Address pull request feedback.

= 14 years ago
parent
commit
b24bec27ca
  1. 4
      pdf.js
  2. 2
      test/test_manifest.json

4
pdf.js

@ -4858,7 +4858,7 @@ var PartialEvaluator = (function partialEvaluator() { @@ -4858,7 +4858,7 @@ var PartialEvaluator = (function partialEvaluator() {
};
properties.glyphs = this.extractEncoding(dict, xref, properties);
if (type.name == 'Type3') {
if (type.name === 'Type3') {
properties.coded = true;
var charProcs = xref.fetchIfRef(dict.get('CharProcs'));
var fontResources = xref.fetchIfRef(dict.get('Resources')) || resources;
@ -5421,7 +5421,7 @@ var CanvasGraphics = (function canvasGraphics() { @@ -5421,7 +5421,7 @@ var CanvasGraphics = (function canvasGraphics() {
lly,
urx,
ury) {
// TODO? According the spec we're also suppose to ignore any operators
// TODO According to the spec we're also suppose to ignore any operators
// that set color or include images while processing this type3 font.
this.rectangle(llx, lly, urx - llx, ury - lly);
this.clip();

2
test/test_manifest.json

@ -181,6 +181,6 @@ @@ -181,6 +181,6 @@
"file": "pdfs/simpletype3font.pdf",
"link": false,
"rounds": 1,
"type": "load"
"type": "eq"
}
]

Loading…
Cancel
Save