When the following HTML is present within the file source passed to WebEngine#load(String) the page loads fine, but when the same HTML content is passed to WebEngine#loadContent(String) a blank page is shown (HTML file path in the first case is on a file system).
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
</head>
<body>TEST</body>
</html>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
</head>
<body>TEST</body>
</html>
- duplicates
-
JDK-8116205 webengine.loadcontent fail to render in memory html file with link to jquery mobile css
-
- Closed
-
- relates to
-
JDK-8087646 Request for loadContent(content, contentType, baseUrl)
-
- Open
-