-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Don't double apply a group xobject's bbox. #14241
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
Conversation
/botio test |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @brendandahl received. Current queue size: 0 Live output at: http://54.241.84.105:8877/9b51eeed82fb3c1/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_test from @brendandahl received. Current queue size: 1 Live output at: http://54.193.163.58:8877/1c4661691995242/output.txt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we perhaps change this to an "eq"-test instead?
pdf.js/test/test_manifest.json
Line 5925 in 30bd5f0
"type": "load" |
r=me, with passing (or improving) tests; thank you!
Yes! |
f76cac8
to
9085194
Compare
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/9b51eeed82fb3c1/output.txt Total script time: 23.35 mins
Image differences available at: http://54.241.84.105:8877/9b51eeed82fb3c1/reftest-analyzer.html#web=eq.log |
In `beginGroup` we create a new canvas that is the size of the bounding box and we translate it to the offset. This means we don't need to also apply the bounding box during `paintFormXObjectBegin`. This improves mozilla#6961 quite a bit, but it still is missing the indention in the ruler.
9085194
to
8161d3f
Compare
This should fix /botio test |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @brendandahl received. Current queue size: 1 Live output at: http://54.241.84.105:8877/5ee14ee0a9055e2/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_test from @brendandahl received. Current queue size: 2 Live output at: http://54.193.163.58:8877/e9070e6339fe117/output.txt |
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/1c4661691995242/output.txt Total script time: 42.55 mins
Image differences available at: http://54.193.163.58:8877/1c4661691995242/reftest-analyzer.html#web=eq.log |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/5ee14ee0a9055e2/output.txt Total script time: 23.47 mins
Image differences available at: http://54.241.84.105:8877/5ee14ee0a9055e2/reftest-analyzer.html#web=eq.log |
From: Bot.io (Windows)FailedFull output at http://54.193.163.58:8877/e9070e6339fe117/output.txt Total script time: 42.27 mins
Image differences available at: http://54.193.163.58:8877/e9070e6339fe117/reftest-analyzer.html#web=eq.log |
/botio makeref |
From: Bot.io (Linux m4)ReceivedCommand cmd_makeref from @brendandahl received. Current queue size: 0 Live output at: http://54.241.84.105:8877/18f6f0adf14a89e/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_makeref from @brendandahl received. Current queue size: 0 Live output at: http://54.193.163.58:8877/c2bbf7b37c42713/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/18f6f0adf14a89e/output.txt Total script time: 19.31 mins
|
From: Bot.io (Windows)SuccessFull output at http://54.193.163.58:8877/c2bbf7b37c42713/output.txt Total script time: 38.55 mins
|
/botio-linux makeref |
From: Bot.io (Linux m4)ReceivedCommand cmd_makeref from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.241.84.105:8877/6e03bdc06090944/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.241.84.105:8877/6e03bdc06090944/output.txt Total script time: 20.89 mins
|
In
beginGroup
we create a new canvas that is the size of thebounding box and we translate it to the offset. This means we don't need to
also apply the bounding box during
paintFormXObjectBegin
.This improves #6961 quite a bit, but it still is missing the indention
in the ruler.