Steps to reproduce
- Install Firefox and Chrome on Linux
- Set Chrome as system default browser
- Preferences > General > Web Browser >
Use external web browser > Select Firefox > Apply and Close
- Open any URL in Eclipse
I expected: Firefox opens with the URL
But got: Firefox launches but URL is not opened
Root Cause
MozillaBrowser uses deprecated "-remote openURL(...)" flag
which was removed in Firefox 57 (2017), causing URL to be
silently dropped.
Fix suggestion
// Before
parameters + " -remote openURL(" + IBrowserDescriptor.URL_PARAMETER + ")"
// After
parameters + " --new-tab " + IBrowserDescriptor.URL_PARAMETER
Tested under this environment:
- OS: Linux Ubuntu 22.04.4 LTS
- Eclipse version: Eclipse Platform 4.38 (2025-12) and CDT version 12.3.0.
- Firefox version: Mozilla Firefox 150.0.3
Note
The same deprecated "-remote" flag is also used in
DefaultWebBrowser.java but has not been verified whether
it is reachable in practice. It may need the same fix.
Community
Build of Eclipse SDK
Steps to reproduce
Use external web browser > Select Firefox > Apply and Close
I expected: Firefox opens with the URL
But got: Firefox launches but URL is not opened
Root Cause
MozillaBrowser uses deprecated "-remote openURL(...)" flag
which was removed in Firefox 57 (2017), causing URL to be
silently dropped.
Fix suggestion
// Before
parameters + " -remote openURL(" + IBrowserDescriptor.URL_PARAMETER + ")"
// After
parameters + " --new-tab " + IBrowserDescriptor.URL_PARAMETER
Tested under this environment:
Note
The same deprecated "-remote" flag is also used in
DefaultWebBrowser.java but has not been verified whether
it is reachable in practice. It may need the same fix.
Community
mandate anyone to fix it. Other contributors may consider the
issue, or not, at their own convenience. The most efficient way
to get it fixed is that I fix it myself and contribute it back
as a good quality patch to the project.