remove left-over shell code
This commit is contained in:
parent
ee5d8763e8
commit
bab03e6add
22
pdf.js
22
pdf.js
@ -1537,7 +1537,7 @@ var PDFDoc = (function() {
|
|||||||
return constructor;
|
return constructor;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
var IDENTITY_MATRIX = [ 1, 0, 0, 1, 0, 0 ];
|
const IDENTITY_MATRIX = [ 1, 0, 0, 1, 0, 0 ];
|
||||||
|
|
||||||
// <canvas> contexts store most of the state we need natively.
|
// <canvas> contexts store most of the state we need natively.
|
||||||
// However, PDF needs a bit more state, which we store here.
|
// However, PDF needs a bit more state, which we store here.
|
||||||
@ -2033,23 +2033,3 @@ var CanvasGraphics = (function() {
|
|||||||
|
|
||||||
return constructor;
|
return constructor;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
function runParseTests() {
|
|
||||||
var data = snarf("paper.pdf", "binary");
|
|
||||||
var pdf = new PDFDoc(new Stream(data));
|
|
||||||
var page = pdf.getPage(1);
|
|
||||||
page.display({
|
|
||||||
beginDrawing: function() {}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if ("arguments" in this) {
|
|
||||||
const cmds = {
|
|
||||||
"-p": runParseTests
|
|
||||||
}
|
|
||||||
for (n in arguments) {
|
|
||||||
var fn = cmds[arguments[n]];
|
|
||||||
if (fn)
|
|
||||||
fn();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user