WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED WORKSFORME
49215
[Qt] QWebView::setPage() doesn't disconnect the previous QWebPage
https://bugs.webkit.org/show_bug.cgi?id=49215
Summary
[Qt] QWebView::setPage() doesn't disconnect the previous QWebPage
Volker Grabsch
Reported
2010-11-08 15:42:52 PST
Created
attachment 73298
[details]
Minimal Qt application to demonstrate the issue When the 'page' object of a QWebView is changed, the previous page isn't disconnected from the QWebView: This leads to all kinds of strange behaviors. For instance, if the previous site showed a bigger image and this the magnifying mouse cursor, switching to a new page that contains HTML doesn't make the cursor change back. Also, the new HTML page doesn't react on clicks anymore. It is as if both pages fight about the user input. I'm using the following workaround: if (webView->page() != 0) { webView->page()->setView(0); } webView->setPage(newWebPage); That is, I disconnect the old page by hand before setting a new page. However, it would be much better if QWebView::setPage() did that automatically. I attached a small Qt application to demonstrate the issue. Just click around, on the buttons and into the QWebView. You'll soon notice that neither the HTML page nor the image page won't respond anymore. If you then activate (i.e. uncomment) the workarounds in MainWindow.cpp, everything will run fine.
Attachments
Minimal Qt application to demonstrate the issue
(34.60 KB, application/gzip)
2010-11-08 15:42 PST
,
Volker Grabsch
no flags
Details
View All
Add attachment
proposed patch, testcase, etc.
Gopal Raghavan
Comment 1
2011-01-26 11:53:33 PST
This issue is reproducible with qt-4.8-latest-release also. I switched the webkit and tried to use trunk webkit
r76636
. The issue is gone. -- Gopal
Ademar Reis
Comment 2
2011-02-18 09:36:09 PST
Tested on the following versions: trunk: not affected 2.1 (branch): not affected 2.0 (qt47): affected Since trunk is fine, I'm closing the bug. The next version of QtWebKit (2.1) will also be fine. Thanks for reporting it.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug