I was personally testing this against a WebView component. I don't know if it affects other components as well.
When retrieving text that has been dragged and dropped from another application from the dragboard object:
e.g.
if (dragboard.hasHtml())
String content = dragboard.getHtml();
If the component is not within a JFXPanel, it will retrieve actual HTML text.
If it is in a JFXPanel, then hasHtml returns true but getHtml() gets a *plain text* version of the contents. (And getString() returns the same.)
Strangely enough, when testing this on a Java 8 prerelease, there is no content at all.
When retrieving text that has been dragged and dropped from another application from the dragboard object:
e.g.
if (dragboard.hasHtml())
String content = dragboard.getHtml();
If the component is not within a JFXPanel, it will retrieve actual HTML text.
If it is in a JFXPanel, then hasHtml returns true but getHtml() gets a *plain text* version of the contents. (And getString() returns the same.)
Strangely enough, when testing this on a Java 8 prerelease, there is no content at all.