[Webkit-unassigned] [Bug 31765] New: Qt WebKit crashes when clicking on/selecting text on certain websites

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Nov 21 02:47:58 PST 2009


https://bugs.webkit.org/show_bug.cgi?id=31765

           Summary: Qt WebKit crashes when clicking on/selecting text on
                    certain websites
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: Major
          Priority: P2
         Component: WebKit Qt
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: pgeorges at gmail.com


I can reproduce this bug with Qt 4.5.3 and Qt 4.6.0rc1 on multiple machines
running both ubuntu 9.10 and CentOS 5.2 with plugins enabled or disabled. I
have created a simple Qt webkit app which guarantees a segfault when clicking
on the main body text on the sample page
("http://www.smh.com.au/news/entertainment/articles/2009/11/20/1258219954593.html"
so far this is the only page I have seen which crashes webkit in this way, but
there may be other pages also).

Basically, just load the page and click on or select the main article text a
few times (sometimes it happens after a single click, other times it requires a
few clicks on the text).

Log:

** (<unknown>:2559): CRITICAL **: atk_object_set_name: assertion `name != NULL'
failed
Segmentation fault


Basic webkit app which guarantees segfault for me:

#include <QtGui/QApplication>
#include <QtWebKit/QWebView>

int main(int argc, char *argv[]) {
 QApplication app(argc, argv);
 QWebView webView;
 webView.settings()->setAttribute(QWebSettings::PluginsEnabled,true);

webView.setUrl(QUrl::fromEncoded("http://www.smh.com.au/news/entertainment/articles/2009/11/20/1258219954593.html"));
 webView.show();
 return app.exec();
}

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list