Make right clip be the width+1000 rather than a fixed size. Issue #1314

This commit is contained in:
Davide P. Cervone 2015-12-18 05:48:19 -05:00
parent 916965b777
commit 0727dd5ae3

View File

@ -1249,7 +1249,7 @@
if (!this.msieClipRectBug && !bbox.noclip && !noclip) {
var dd = 3/this.em;
var H = (bbox.H == null ? bbox.h : bbox.H), D = (bbox.D == null ? bbox.d : bbox.D);
var t = HH - H - dd, b = HH + D + dd, l = -10000, r = 1000000;
var t = HH - H - dd, b = HH + D + dd, l = -1000, r = bbox.rw+1000;
span.style.clip = "rect("+this.Em(t)+" "+this.Em(r)+" "+this.Em(b)+" "+this.Em(l)+")";
}
}