Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-swt-dev] Browser comparability specifics

Hi Terrance,

By default the Browser control embeds a natively-available browser renderer, so these capabilities are determined by what the user has installed (eg.- their IE or Safari version, etc.).  For a list of the supported native browser renderers see http://www.eclipse.org/swt/faq.php#browserplatforms .

If you want to guarantee a consistent set of capabilities then you can ship a XULRunner (Mozilla's renderer) with your app and create your Browser instances with style SWT.MOZILLA.  For info on this see:

- http://www.eclipse.org/swt/faq.php#howusemozilla
- http://www.eclipse.org/swt/faq.php#specifyxulrunner
- https://bugs.eclipse.org/bugs/show_bug.cgi?id=327696

Grant




From:        terrance grahn <tjgrahn@xxxxxxxxx>
To:        platform-swt-dev@xxxxxxxxxxx
Date:        02/04/2012 09:03 PM
Subject:        [platform-swt-dev] Browser comparability specifics
Sent by:        platform-swt-dev-bounces@xxxxxxxxxxx




I am trying to determine if using org.eclipse.swt.browser.
Browser will be compatible with the page I need to show.  In particular, I need to know:
  • does Browser support HTML 4.01 Standard or HTML5?
  • does Browser support CSS level 2.1 or CSS level 3.0?
  • does Browser support _javascript_ version 1.5 (or above)?
Any information will help.

Thanks in advance,
Terrance
_______________________________________________
platform-swt-dev mailing list
platform-swt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/platform-swt-dev


Back to the top