Hi there,

I've got problems getting several websites working in Qt's built in browser. I'm using PyQt4, but that shouldn't make a difference, should it?

Qt Code:
  1. def __init__(self, parent = None):
  2. super(MapViewer, self).__init__(parent)
  3. self.load(QUrl("http://qt.nokia.com))
To copy to clipboard, switch view to plain text mode 

That's everything I do with my subclass of QWebView (instead of initializing it from another class of course). Works fine for HTML, but JavaScript, like in the samplepage, doesn't work correctly:


That's how it looks like, and that's how it should look like:


Is that a known issue? I heard that executing JavaScript via QWebView works fine, why shouldn't it work when implemented in the displayed website itself?


Hope you guys can help me,
aRestless