Bug 53243
| Summary: | [Qt] QWebView broken with Google Map Api on Windows. | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | thomas.mansencal |
| Component: | WebKit Qt | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | Blocker | CC: | benjamin |
| Priority: | P1 | Keywords: | Qt, QtTriaged |
| Version: | 420+ | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
thomas.mansencal
This is a cross post from the Qt bug tracker since I don't know where to report that : http://bugreports.qt.nokia.com/browse/QTBUG-16970
The following code doesn't work anymore on Windows in latest Qt Releases. It was working on Qt 4.6.2 on Windows and I have something similar in Python running perfectly on Mac Os X with PyQt 4.8.2 / Qt 4.7.
I'm not sure about the Webkit version that Qt is using, the only thing I found was this in the Qt installation :
This is a snapshot of the Qt port of WebKit from
git://gitorious.org/qtwebkit/qtwebkit.git
and has the sha1 checksum
460b651cbe4f6994b492ff08614e57b0e31a24c8
And the failing snippet :
#include <QtGui/QApplication>
#include <QtWebKit>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QWebView *webview = new QWebView();
webview->load(QUrl("http://code.google.com/intl/fr-FR/apis/maps/documentation/javascript/examples/map-simple.html"));
webview->show();
return a.exec();
}
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Benjamin Poulain
Please follow http://trac.webkit.org/wiki/QtWebKitBugs when reporing bug here.
*** This bug has been marked as a duplicate of bug 48313 ***