[jfx17u] RFR: 8311097: Synchron XMLHttpRequest not receiving data

2023-09-02 Thread Jose Pereda
Clean backport of 8311097: Synchron XMLHttpRequest not receiving data Reviewed-by: jbhaskar, kcr - Commit messages: - 8311097: Synchron XMLHttpRequest not receiving data Changes: https://git.openjdk.org/jfx17u/pull/146/files Webrev: https://webrevs.openjdk.org/?repo=jfx17u=146=00

[jfx21u] RFR: 8311097: Synchron XMLHttpRequest not receiving data

2023-09-01 Thread Andrew Brygin
Clean backport of the fix for 8311097 from openjfx/master to jfx21u. Local runs of :web:test reveal no issues. - Commit messages: - 8311097: Synchron XMLHttpRequest not receiving data Changes: https://git.openjdk.org/jfx21u/pull/12/files Webrev:

Re: RFR: 8311097: Synchron XMLHttpRequest not receiving data

2023-08-31 Thread Kevin Rushforth
On Wed, 30 Aug 2023 14:32:37 GMT, Andrew Brygin wrote: > This issue is a regression from 7e48413eb0 8285881: Update WebKit to 614.1. > For synchronous requests, we have an additional buffer to collect data, and > the appending data into this buffer is doing in a wrong way: we use >

Re: RFR: 8311097: Synchron XMLHttpRequest not receiving data

2023-08-31 Thread Jay Bhaskar
On Wed, 30 Aug 2023 14:32:37 GMT, Andrew Brygin wrote: > This issue is a regression from 7e48413eb0 8285881: Update WebKit to 614.1. > For synchronous requests, we have an additional buffer to collect data, and > the appending data into this buffer is doing in a wrong way: we use >

Re: RFR: 8311097: Synchron XMLHttpRequest not receiving data

2023-08-30 Thread Kevin Rushforth
On Wed, 30 Aug 2023 14:32:37 GMT, Andrew Brygin wrote: > This issue is a regression from 7e48413eb0 8285881: Update WebKit to 614.1. > For synchronous requests, we have an additional buffer to collect data, and > the appending data into this buffer is doing in a wrong way: we use >

RFR: 8311097: Synchron XMLHttpRequest not receiving data

2023-08-30 Thread Andrew Brygin
This issue is a regression from 7e48413eb0 8285881: Update WebKit to 614.1. For synchronous requests, we have an additional buffer to collect data, and the appending data into this buffer is doing in a wrong way: we use Vector::append(U&& u), which adds only the first data element. Instead,