2024
- v7.41.4
- v8.1.0
- v8.0.0
- v7.41.3
- v7.41.2
- v7.41.1
- v7.41.0
- v7.40.0
- v7.39.2
- v7.39.1
- v7.39.0
- v7.38.2
- v7.38.1
- v7.38.0
- v7.37.2
- v7.37.1
2023
- v7.37.0
- v7.36.3
- v7.36.2
- v7.36.1
- v7.36
- v7.35.2
- v7.35.1
- v7.35
- v7.34.1
- v7.34
- v7.33.2
- v7.33.1
- v7.33
- v7.32
- v7.31.1
- v7.31
- v7.30.3
- v7.30.2
- v7.30
2022
2021
2020
2019
2018
2017
2016
2015
2014
2013
2012
2011
2010
2009
2008
2007
Posted on August 14, 2020
JxBrowser 7.10
In this minor update we improved the rendering performance in the off-screen rendering mode for Swing, JavaFX, and SWT, restored functionality that allows disabling the internal Chromium traffic that was temporary dropped in 7.0, and improved stability of the library.
Rendering performance
The off-screen rendering mode has been re-implemented to improve its rendering performance on all supported platforms and UI toolkits.
The results of the rendering performance testing on the different platforms on an HTML5 video in Frame Per Second ( FPS) are the following:
Windows
- Intel Core i7 7700k 4.2 GHz with GPU GTX 1070
- Video dimension: 1920x1080
Swing
JavaFX
SWT
macOS
- MacBook Pro 15", Intel Core i7 2.9GHz with GPU Radeon Pro 650 4GB
- Video dimension: 2880x1800
Swing
JavaFX
SWT
Linux
- AMD FX-8300 3.3 GHz with GPU Radeon RX 480
- Video dimension: 1920x1080
Swing
JavaFX
SWT
For SWT UI toolkit on Linux we have not performed any optimization in the off-screen rendering mode yet.
Chromium traffic
Chromium features such as Google Cloud Messaging, Translate Ranker, Extensions Updater, Safe Browsing, SpellChecker, Widevine etc. make requests to the external Google web services such as https://ssl.gstatic.com, https://clients4.google.com, etc.
When the web services are not accessible or you do not want this additional traffic, you can use the following API:
Engine engine = Engine.newInstance(
EngineOptions.newBuilder(renderingMode)
.disableChromiumTraffic()
.build());
This option allows disabling only the Chromium features that are not accessible through JxBrowser API. For example, the SpellChecker and Widevine features can be accessible through JxBrowser API, so the option doesn’t disable the traffic caused by these features.
Focused DOM element
The DOM API has been extended with the Document.focusedElement()
method that allows obtaining the currently focused
HTML element on the web page:
document.focusedElement().ifPresent(element -> {
...
});
Improvements
- Spell checking functionality has been restored.
- The
com.teamdev.jxbrowser.view.swt.callback.DefaultStartDownloadCallback
implementation now prompts when the target file exists and will be overridden. - The
DevTools.remoteDebuggingUrl()
method now returns URL that can be used without Internet connection.
IPC message order
In the previous versions
the IPC message order
might be changed when a synchronous callback is invoked. For example, dispatching the keyboard events through
the Browser.dispatch()
method might lead to an issue with the randomly mixed letters in a text field on a web page.
Explanation: when a synchronous callback is invoked, we start a nested loop processing incoming messages. The problem is that there is a window between we get into the method invoking the callback and the moment when we actually start the nested loop. As the result, we can get a situation when some of the incoming messages are posted to the Chromium thread queue and those messages will be processed after the method returns. At the same time, those messages that arrive when the nested loop is started will be processed before the method returns, and this changes the order in which the messages were sent.
In this version we improved the internal IPC logic to get rid of such situations. This improvement introduces one important requirement on how you should process the code inside a synchronous callback. If you execute some logic that makes synchronous calls to the library in a separate thread inside a synchronous callback and blocks the callback awaiting until the logic has been executed, you might get a deadlock:
// Register a synchronous callback.
browser.set(SomeSyncCallback.class, params -> {
// Invoke some logic in a separate thread and block the current
// thread execution until the logic has been executed.
invokeInSeparateThreadAndWait(() -> {
// Invoke a synchronous method.
browser.someSyncMethod(); // <-- Deadlock: this method will never return.
});
return Response.proceed();
});
To get rid of the deadlock, use the following approach instead:
// Register a synchronous callback.
browser.set(SomeSyncCallback.class, params -> {
// Invoke a synchronous method.
browser.someSyncMethod();
return Response.proceed();
});
Fixed issues
- Unexpected content scaling when resizing
BrowserView
in the hardware accelerated rendering mode on macOS. - The
NavigationException: Failed to load resource: ABORTED
error on subsequentNavigation.loadUrlAndWait()
calls. - Mouse stuck on panning when exiting from and returning to
BrowserView
in the hardware accelerated rendering mode on Windows. - JavaFX
BrowserView
not shown after hidingStage
in the off-screen rendering mode. - Crash or freeze when closing
Engine
. - Crash when displaying
BrowserView
in the hardware accelerated rendering mode on Windows. - The library getting frequently stuck at
IpcLibrary.sendData()
. - The Swing, JavaFX, and SWT UI toolkit classes being located in
jxbrowser.jar
when they must be in separate JARs. - The focus restoring functionality not working properly in SWT
BrowserView
. - The
Node.xPath()
method generating incorrectNode
indexes. - The
Engine
initialization stuck at calling theldd
command to check the missing system libraries on Linux. - Deadlock on accessing non-empty cookie store.
- The Chromium welcome page on Windows Server 2012.
- The incorrect order when dispatching keyboard events using the
Browser.dispatch()
method.
Download JxBrowser 7.10
Please share your email with us, and we'll send you download instructions.
We were unable to send the email. Please use the direct link to download JxBrowser.
If you are a registered customer you don't need to do anything to use this update.
If you would like to evaluate the product, you need an evaluation license.
Follow @JxBrowserTeam to get notified of the library updates.
Subscribe to our RSS feed to get instant updates on new releases.
Subscribe to get notifications about the latest releases.