I'm on Windows 10, developing some app with TWebBrowser, and I had plan to use jQuery / BootStrap and some other CSS like FontAwesome
All these are perfectly compatible with Internet Explorer, at least latest versions. Anyway, the TWebBrowser inside my app, doesn't appear to work with simple html code like:
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body>
<span id="text1"><i class="fa fa-user fa-2x"></i> - Personal Profile Update</span>
</body>
</html>
This code should show an user icon from FontAwesome, but doesn't appear anything.
The application code is very simple, I just put WebBrowser on my Form, and on FormShow I do:
WebBrowser1.Navigate('http://localhost/');
But like I said, no icon is displayed. And this is just one example, I noted that Bootstrap html forms styles, jQuery carrousel, doesn't works too... I thought WebBrowser was just like Internet Explorer control, but looks like it doesn't. Is there any easy solution to make it compatible with this stuff?