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

Prevent warning on unimplemented operator thrown for OPS.dependency

This commit is contained in:
Wojciech Maj 2018-04-02 14:29:34 +02:00
parent 2f63ca0705
commit acc0a0fe95

View file

@ -530,6 +530,9 @@ SVGGraphics = (function SVGGraphicsClosure() {
case OPS.beginText:
this.beginText();
break;
case OPS.dependency:
// Handled in loadDependencies, warning should not be thrown
break;
case OPS.setLeading:
this.setLeading(args);
break;