- 
    Bug 
- 
    Resolution: Done
- 
    P1: Critical 
- 
    5.2.0
- 
    Windows
QWebview opens Java applet in wrong position. Looks like it's anchored to application position even it should be anchored to QWebView position. It's real issue for example with Qt Fancy browser where applet is opened over menu and controls/address bar.
Works correctly in Qt 4.8.5.
Here's example with Java applet page to test:
main.cpp
#include <QApplication> #include <QWebView> #include <QWebSettings> int main(int argc, char *argv[]) { QApplication a(argc, argv); QWidget w; QWebView view(&w); view.setGeometry(0,100,1000,500); QWebSettings::globalSettings()->setAttribute(QWebSettings::JavaEnabled, true); QWebSettings::globalSettings()->setAttribute(QWebSettings::PluginsEnabled, true); QWebSettings::globalSettings()->setAttribute(QWebSettings::JavascriptEnabled, true); view.load(QUrl("http://eassistant.nmmn.com/en/AppletFitCalc.html")); w.show(); return a.exec(); }