Merge pull request #9853 from Snuffleupagus/re-render-after-cancel
Fix re-rendering, using the same canvas, when rendering was previously cancelled (PR 8519 follow-up)
This commit is contained in:
commit
99f8f2c275
@ -2380,9 +2380,10 @@ var InternalRenderTask = (function InternalRenderTaskClosure() {
|
|||||||
|
|
||||||
InternalRenderTask.prototype = {
|
InternalRenderTask.prototype = {
|
||||||
|
|
||||||
initializeGraphics:
|
initializeGraphics(transparency) {
|
||||||
function InternalRenderTask_initializeGraphics(transparency) {
|
if (this.cancelled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (this._canvas) {
|
if (this._canvas) {
|
||||||
if (canvasInRendering.has(this._canvas)) {
|
if (canvasInRendering.has(this._canvas)) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
@ -2393,9 +2394,6 @@ var InternalRenderTask = (function InternalRenderTaskClosure() {
|
|||||||
canvasInRendering.set(this._canvas, this);
|
canvasInRendering.set(this._canvas, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.cancelled) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (this._pdfBug && globalScope.StepperManager &&
|
if (this._pdfBug && globalScope.StepperManager &&
|
||||||
globalScope.StepperManager.enabled) {
|
globalScope.StepperManager.enabled) {
|
||||||
this.stepper = globalScope.StepperManager.create(this.pageNumber - 1);
|
this.stepper = globalScope.StepperManager.create(this.pageNumber - 1);
|
||||||
|
@ -1253,6 +1253,37 @@ describe('api', function() {
|
|||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('re-render page, using the same canvas, after cancelling rendering',
|
||||||
|
function(done) {
|
||||||
|
if (isNodeJS()) {
|
||||||
|
pending('TODO: Support Canvas testing in Node.js.');
|
||||||
|
}
|
||||||
|
let viewport = page.getViewport(1);
|
||||||
|
let canvasAndCtx = CanvasFactory.create(viewport.width, viewport.height);
|
||||||
|
|
||||||
|
let renderTask = page.render({
|
||||||
|
canvasContext: canvasAndCtx.context,
|
||||||
|
viewport,
|
||||||
|
});
|
||||||
|
renderTask.cancel();
|
||||||
|
|
||||||
|
renderTask.promise.then(() => {
|
||||||
|
throw new Error('shall cancel rendering');
|
||||||
|
}, (reason) => {
|
||||||
|
expect(reason instanceof RenderingCancelledException).toEqual(true);
|
||||||
|
}).then(() => {
|
||||||
|
let reRenderTask = page.render({
|
||||||
|
canvasContext: canvasAndCtx.context,
|
||||||
|
viewport,
|
||||||
|
});
|
||||||
|
return reRenderTask.promise;
|
||||||
|
}).then(() => {
|
||||||
|
CanvasFactory.destroy(canvasAndCtx);
|
||||||
|
done();
|
||||||
|
}, done.fail);
|
||||||
|
});
|
||||||
|
|
||||||
it('multiple render() on the same canvas', function(done) {
|
it('multiple render() on the same canvas', function(done) {
|
||||||
if (isNodeJS()) {
|
if (isNodeJS()) {
|
||||||
pending('TODO: Support Canvas testing in Node.js.');
|
pending('TODO: Support Canvas testing in Node.js.');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user