Posted on
JxBrowser 8.14.0
Adding words for spell checking
In this version, we have extended the API with a method to add new words to a spell-checking dictionary in bulk, which is faster for multiple words:
// Add one word at a time.
dictionary.add("JxBrowser");
// Add multiple words at once:
Set<String> words = Set.of("JxBrowser", "TeamDev", "OFF_SCREEN");
dictionary.add(words);
Converting CompletableFuture to Promise
Starting with JxBrowser 8.14.0, you can pass CompletableFuture objects to JavaScript and JxBrowser
will automatically convert them to Promise:
var future = CompletableFuture.supplyAsync(() -> "Hello world");
window.putProperty("myPromise", future);
frame.executeJavaScript("""
myPromise
.then((result) => console.log(result))
.catch((error) => console.log(error))
""");
Note that converting Promise back to CompletableFuture is not supported. Use JsPromise in this case.
Read the JavaScript guide for more details.
IME on Linux
Beginning with JxBrowser 8.14.0, IME support on Linux is now complete, including in the native input mode.
Chromium 142.0.7444.176
We upgraded Chromium to a newer version, which introduces important security fixes. Among them:
- CVE-2025-13042: Inappropriate implementation in V8
- CVE-2025-13223: Type Confusion in V8
- CVE-2025-13224: Type Confusion in V8
You can read more about it in the Chromium blog posts:
Quality enhancements
- Fixed an issue where keyboard input stopped working after a
BrowserViewwas hidden and shown again on Windows, in the native input mode. - Fixed an issue where the mouse pointer disappeared after touching a
BrowserViewand then hiding it on Windows, in theHARDWARE_ACCELERATEDmode. - Fixed incorrect positioning of
<select>dropdowns whenBrowserViewis inJInternalFrameon Windows, in theOFF_SCREENmode. - Fixed a
NullPointerExceptionthat occurred inBrowserViewin JavaFX when closing theBrowserin theHARDWARE_ACCELERATEDmode, on Windows and Linux. - Restored capturing of audio streams when using
AudioCaptureMode.CAPTUREinStartCaptureSessionCallbackon Windows. - Fixed an issue where VoiceOver didn’t read elements with
aria-liveattributes on macOS.
Download JxBrowser 8.14.0
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 @JxBrowser 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.