Carl
Carl
You should check the `adb logcat` output for clues on what happens when it works vs when it does not work.
> ### Can the bug be reproduced with corresponding Chromium version? > No I can reproduce it with Chromium. Note: this happens only when using localised results and when clicking...
@uazo is there something from upstream we can already use? Otherwise this would look a lot like the UA and timezone spoofing situation.
> yes, I had checked. > their [implementation](https://bugs.chromium.org/p/chromium/issues/detail?id=1323776) is fine, but it only handles the (http) response and not the request. What do you mean? `Accept-Language` is a HTTP request...
> what do you think about it? Sounds good.
Fixed in `105.0.5195.147`.
@Eloston I have thought of this in the past, but I quickly dismissed the possibility because of the possible vectorial nature of WebGL renderings. You can have pretty advanced color...
@Eloston yesterday I did some digging. The `readPixels` function is defined in https://github.com/chromium/chromium/blob/ffd9d67094adb539dd2cfd34d3a8aaa57c77fcc7/third_party/blink/renderer/modules/webgl/webgl_rendering_context_base.h but ultimately is implemented by the GL context. An example of such context (not sure if there...
> I think we can look into intercepting the JavaScript interface definition for readPixels; from there we can determine how we can manipulate the data being retrieved (e.g. during the...
> Based on the [documentation on WebGLRenderingContext.readPixels()](https://developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext/readPixels), note that the data has to be read into a **new** array; i.e. the data is copied into the JavaScript environment in order...