Re: including fonts

2016-01-04 Thread Phil Race
Hi, I can't speak authoritatively on the CSS implementation because I am not familiar with it but here are some thoughts and observations that might help. Suppose you have : @font-face { font-family: RobotoMedium src: url("robotomedium.ttf" } My reading of the W3C spec. is that the name

9-dev unlocked following sanity testing

2016-01-04 Thread Kevin Rushforth

Re: Shader issue: #extension repeated in shader

2016-01-04 Thread Jim Graham
Yes, we should look to have a separate header block that various shader program pieces can append to independently of the code they insert into the main body of the shader. I've been through it a few times and could probably come up with something if needed, but do you feel confident trying

Re: including fonts

2016-01-04 Thread Tom Eugelink
No problem, thanks for the suggestion! What I expect to be the cause is that the attributes in @font-face, specifying if a font is italic or not, are not supported. And they probably aren't populated based on the TTF metadata either. But before I dive too deep, maybe someone can prevent me

Re: including fonts

2016-01-04 Thread Phil Race
Hi, I'm not certain I understand what it is that is missing. I don't think Font.loadFont would need to accept the CSS parameters and do the CSS-style lookup. @font-face should populate a CSS table of names and styles. I expect that is what browsers do. The CSS lookup code would then consult this

Re: including fonts

2016-01-04 Thread David Grieve
The reason CSS ignores everything but src is that there is no public API in Font for providing the additional information. CSS uses Font.loadFont to load a font from a @font-face src url. See com/sun/javafx/css/StyleManager.java On 1/4/16 2:43 PM, Phil Race wrote: Hi, I can't speak

Re: JavaFX WebView TLS/SSL Certificate Revocation Check

2016-01-04 Thread Michael Ennen
Thanks very much, really appreciate it. On Mon, Jan 4, 2016 at 5:14 PM, Kevin Rushforth wrote: > We'll take a closer look at it then. > > > -- Kevin > > > Michael Ennen wrote: > > Kevin, > > After some further exploration I see that indeed certificate revocation >

Re: JavaFX WebView TLS/SSL Certificate Revocation Check

2016-01-04 Thread Kevin Rushforth
We'll take a closer look at it then. -- Kevin Michael Ennen wrote: Kevin, After some further exploration I see that indeed certificate revocation does seem to be enabled through: Security.setProperty("ocsp.enable", "true"); System.setProperty("com.sun.security.enableCRLDP", "true");

Re: JavaFX WebView TLS/SSL Certificate Revocation Check

2016-01-04 Thread Michael Ennen
Kevin, After some further exploration I see that indeed certificate revocation does seem to be enabled through: Security.setProperty("ocsp.enable", "true"); System.setProperty("com.sun.security.enableCRLDP", "true"); System.setProperty("com.sun.net.ssl.checkRevocation", "true"); However, this

Full Screen Mode in JavaFX WebView

2016-01-04 Thread BoydEdmondson-NebulaSoftware
I have a custom Java application that uses JavaFX WebView to create a web browser (which uses WebKit). I am trying to get the browser full screen mode to work (https://fullscreen.spec.whatwg.org/). How can I get full screen mode to work in WebKit? I'm also trying to get WebKit's Web

Re: including fonts

2016-01-04 Thread David Hill
On 1/3/16, 9:52 AM, Tom Eugelink wrote: Hi Tom, The OpenJFX wiki has some font information at https://wiki.openjdk.java.net/display/OpenJFX/Font+Setup I am pretty sure it does not address your issue, but I am always looking for suggested edits for our wiki. So if you get a good answer...

Re: JavaFX WebView TLS/SSL Certificate Revocation Check

2016-01-04 Thread Kevin Rushforth
Try the following: System.setProperty("com.sun.net.ssl.checkRevocation", "true"); -- Kevin Michael Ennen wrote: Hello, I will keep this short and brief. If one attempts to use the WebView control to load the following page: https://revoked.grc.com/ The page is loaded, SSL handshake

RE: Full Screen Mode in JavaFX WebView

2016-01-04 Thread Guru Hb
Please see comments embedded -Original Message- From: BoydEdmondson-NebulaSoftware [mailto:boydedmond...@nebulasoftware.com] Sent: Monday, January 04, 2016 7:01 PM To: openjfx-dev@openjdk.java.net Subject: Full Screen Mode in JavaFX WebView I have a custom Java application that uses

RE: Full Screen Mode in JavaFX WebView

2016-01-04 Thread BoydEdmondson-NebulaSoftware
I'll give that a try, thanks. The application works fine in all other browsers I've tested. It just fails in WebView. I'll log defects as you suggest. Boyd -Original Message- From: Guru Hb [mailto:guru...@oracle.com] Sent: January 4, 2016 8:33 AM To: BoydEdmondson-NebulaSoftware Cc: