-
Notifications
You must be signed in to change notification settings - Fork 10.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rendering problem when zooming on Safari on iPhone 11 #16155
Comments
This unfortunately sounds like a browser- and/or platform-specific bug, since otherwise you'd expect it to be consistently broken everywhere; most likely this needs to be reported to Apple instead. Please keep in mind that the built-in Firefox PDF Viewer is the primary development target here. (Historically it feels like Safari has often been the "worst" browser to attempt to support, and anecdotally it seems that later Safari versions have a fair share of trouble with the PDF.js library when Firefox/Chrome works fine.) |
Ok, but it works fine in PDF.js 2.5.157. |
WebKit has a rendering bug when rendering canvas that have their width relative to their parent, and their parent is resized. This causes a "tearing" effect when zooming in PDFs past a certain threshold, which is devide-dependent but tends to be between 120% and 200%. The DOM structure around the canvas is as follows: div.pdfViewer [ --scale-factor: ...; ] > div.page [ width: round(var(--scale-factor) * ..., 1px); ] > div.canvasWrapper > canvas Setting `width: inherit` on the div.canvasWrapper and on the canvas is equivalent to explicitly specifying the same `width` property in pixels as in div.page, thus making Safari properly redraw the canvas on resize. See https://bugs.webkit.org/show_bug.cgi?id=267986 for more details on the WebKit bug. Fixes mozilla#16155, fixes mozilla#16329, fixes mozilla#17459
WebKit has a rendering bug when rendering canvas that have their width relative to their parent, and their parent is resized. This causes a "tearing" effect when zooming in PDFs past a certain threshold, which is device-dependent but tends to be between 120% and 200%. The DOM structure around the canvas is as follows: div.pdfViewer [ --scale-factor: ...; ] > div.page [ width: round(var(--scale-factor) * ..., 1px); ] > div.canvasWrapper > canvas Setting `width: inherit` on the div.canvasWrapper and on the canvas is equivalent to explicitly specifying the same `width` property in pixels as in div.page, thus making Safari properly redraw the canvas on resize. See https://bugs.webkit.org/show_bug.cgi?id=267986 for more details on the WebKit bug. Fixes mozilla#16155, fixes mozilla#16329, fixes mozilla#17459
WebKit has a bug when rendering canvases that have their width defined as relative to their container, and their parent is resized. This causes a "tearing" effect when zooming in PDFs past a certain threshold, which is device-dependent but tends to be between 120% and 200%. The DOM structure around the canvas is as follows: div.pdfViewer [ --scale-factor: ...; ] > div.page [ width: round(var(--scale-factor) * ..., 1px); ] > div.canvasWrapper > canvas Setting `width: inherit` on the div.canvasWrapper and on the canvas is equivalent to explicitly specifying the same `width` property in pixels as in div.page, thus making Safari properly redraw the canvas on resize. See https://bugs.webkit.org/show_bug.cgi?id=267986 for more details on the WebKit bug. Fixes mozilla#16155, fixes mozilla#16329, fixes mozilla#17459
Attach (recommended) or Link to PDF file here: https://mozilla.github.io/pdf.js/web/compressed.tracemonkey-pldi-09.pdf (seems to happen to any PDF)
Configuration:
Steps to reproduce the problem:
What is the expected behavior? (add screenshot)

PDF is rendered correctly when zooming.
What went wrong? (add screenshot)

The PDF is rendered incorrectly when zooming.
The text was updated successfully, but these errors were encountered: