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

Ignore paint form XObject when the name is missing (issue 4558)

Fixes 4558 (since the font issues already appear to be fixed).
This commit is contained in:
Jonas Jenwald 2015-06-22 13:33:15 +02:00
parent 99415a75b7
commit 46a8485db4
2 changed files with 15 additions and 0 deletions

View file

@ -227,5 +227,16 @@ describe('evaluator', function() {
expect(result.fnArray[3]).toEqual(OPS.restore);
});
});
it('should skip paint form XObject if name is missing', function() {
var evaluator = new PartialEvaluator(new PdfManagerMock(),
new XrefMock(), new HandlerMock(),
'prefix');
var stream = new StringStream('/ Do');
runOperatorListCheck(evaluator, stream, new ResourcesMock(),
function (result) {
expect(result.argsArray).toEqual([]);
expect(result.fnArray).toEqual([]);
});
});
});
});