I'm using JavaFX WebView to load a website. This website is using iframes.
It's working fine on a classical browser, but when I'm displaying the pages using JavaFX WebView, the frames are empty.
I tried to display the content of the iframe programmatically from the Java code (according to this: How to get by javafx webview content iframe loaded page?). It is empty.
I also tried to allow everything with Content Security Policy, X-Frame-Options, etc. on the client side (by overriding the HTTP headers), following JavaFX WebView disable Same origin policy (allow cross domain requests). It did not change anything.
I hava added a WebConsoleListener to see some logs. I have no errors.
What is the issue? Is there a way to get more logs?