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

2023-09-01 Thread Andrew Brygin
On Fri, 1 Sep 2023 11:47:09 GMT, Andrew Brygin wrote: > Clean backport of the fix for 8311097 from openjfx/master to jfx21u. Local > runs of :web:test reveal no issues. This pull request has now been integrated. Changeset: b2850a09 Author:Andrew Brygin Committer: Dmitry Cherepano

[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: https://webrevs.openjdk.org/?repo=

Integrated: 8311097: Synchron XMLHttpRequest not receiving data

2023-09-01 Thread Andrew Brygin
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, we

Re: RFR: 8282386: JavaFX media stubs rely on libav.org

2023-01-05 Thread Andrew Brygin
On Thu, 5 Jan 2023 14:11:10 GMT, Johan Vos wrote: > Retrieve libav sources from github. > Fix JDK-8282386 Probably the name pattern of libav artifacts needs to be updated from `libav-${versions}` to `v${version}` on line 3066, and etc: if (f.name.startsWith("libav-${version}")) { Thanks, And