Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Firefox in Eclipse instead of IE

In Eclipse, is it possible to use Firefox as Eclipse's internal Web browser instead of Internet Explorer.

I am a Web developer using Eclipse in Windows.

Thanks!

like image 725
Donald Taylor Avatar asked Jun 07 '11 18:06

Donald Taylor


People also ask

How do I select a browser in Eclipse?

The Internal Web Browser view allows you to surf the internet from within the Eclipse Workbench Window. To activate the Internal Web Browser view click on the Window and select Show View → Other. In the filter text box of the Show View dialog box enter browser . From the tree select Internal Web Browser and click OK.

How do I change my default browser in Eclipse?

Go to your eclipse Window -> Preferences -> General -> Web Browser and you can select your default Web Browser here and if you want to add some other web browser then click on New button and put and and then click on OK and then after your can see your newly added browser in "External web browser" section.

Is Firefox better than IE?

Firefox is hands down the winner across all assessment categories.

Does Firefox use IE?

Chosen solutionFirefox does not use Internet Explorer to access the internet, but some of the components of Windows that Firefox needs, such as the networking components, might be intertwined with IE in such a way that IE updates will affect them.


1 Answers

The SWT Browser widget that is uesd by the internal web browser chooses the platform default for its web rendering technology. So for Windows that is the MSHTML COM component (IE renderer). For Linux that is Mozilla (Webkit for 3.7 is available) and on Mac, WebKit(Safari). However, there are third party plugins like MyEclipse that do embed a mozilla runtime (XULRunner) that do use the Mozilla (Gecko) renderer for a browser.

So to answer your question there is no way to use Firefox as internal web browser on windows, however, you can install 3rd-party plugins for Eclipse (MyEclipse, JBoss tools, etc) that embed Xulrunner binaries that will allow for embedding mozilla renderer as the technology used by an internal Eclipse browser. Note, this may require that use the 3rd-party web browser widget instead of the standard eclipse platform one, but those 3rd party tools usually provide a toolbar action, etc.

like image 98
gamerson Avatar answered Oct 19 '22 23:10

gamerson