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
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=
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
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
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