As in the title: Is it possible to deactivate/turn off the JavaFx WebViews HTML Rendering Engine?
I would like to see the raw HTML-Code in the same WebView-Component.
Changing the contentType
to text
, results in an empty WebView:
String content = "<HTML><b>test</b></HTML>";
String contentType = "text"; // text/html
webEngine.loadContent(content, contentType);