-
Notifications
You must be signed in to change notification settings - Fork 10k
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
[api-minor] Disable ImageDecoder
usage by default in Chromium browsers
#19045
Conversation
Given that there are multiple issues with `ImageDecoder` in Chromium browsers, affecting both BMP and JPEG images, for now we (by default) disable that functionality there to avoid problems. This also means that we can remove the previously added, and separate, `isChrome` API-option.
/botio test |
From: Bot.io (Linux m4)ReceivedCommand cmd_test from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.241.84.105:8877/972d08d84ab520f/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_test from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.193.163.58:8877/e798e11b530f9d1/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.241.84.105:8877/972d08d84ab520f/output.txt Total script time: 30.62 mins
Image differences available at: http://54.241.84.105:8877/972d08d84ab520f/reftest-analyzer.html#web=eq.log |
From: Bot.io (Windows)SuccessFull output at http://54.193.163.58:8877/e798e11b530f9d1/output.txt Total script time: 45.59 mins
|
I don't know what to think about this patch. |
Understood; I was mainly wanting to get rid of the separate
Could we perhaps instead consider simply removing the |
I have been thinking about this and tend to agree with the direction of this patch. While it's good this caused bugs in Chrome to be found and reported, it shows that the Chrome implementation might need more time to settle before we enable it for a broader audience, and Firefox is our primary development target. If we enable it now it might also cause more bugs to be reported to PDF.js even though they are Chrome browser bugs. I would propose that we at least try to remove the |
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.
LGTM. Thank you.
Thank you! /botio makeref |
From: Bot.io (Linux m4)ReceivedCommand cmd_makeref from @timvandermeij received. Current queue size: 1 Live output at: http://54.241.84.105:8877/296ea5bb2222280/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_makeref from @timvandermeij received. Current queue size: 1 Live output at: http://54.193.163.58:8877/5fd77ac015c9754/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.241.84.105:8877/296ea5bb2222280/output.txt Total script time: 20.52 mins
|
From: Bot.io (Windows)SuccessFull output at http://54.193.163.58:8877/5fd77ac015c9754/output.txt Total script time: 25.81 mins
|
Given that there are multiple issues with
ImageDecoder
in Chromium browsers, affecting both BMP and JPEG images, for now we (by default) disable that functionality there to avoid problems.This also means that we can remove the previously added, and separate,
isChrome
API-option.