Hi i want to show html content in BrowserField. I used the code blove to do this but i only see white empty page.
BrowserField demo = new BrowserField();
String res="<html><body><p>demo</p></body></html>";
demo.displayContent(res, "http://localhost");
Sometimes it shows my page correctly with css fonts but sometimes it does not show anything.
What is the problem in my code?