[Webkit-unassigned] [Bug 33887] [Qt] QGraphicsWebView show's combo box popups in the wrong position

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jan 20 01:41:15 PST 2010


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





--- Comment #1 from Girish Ramakrishnan <girish at forwardbias.in>  2010-01-20 01:41:15 PST ---
Test case:

#include <QtGui>
#include <QtWebKit>

int main(int argc, char **argv)
{
    QApplication app(argc, argv);

    QGraphicsScene *scene = new QGraphicsScene;
    QGraphicsWebView *webView = new QGraphicsWebView;
    webView->load(QUrl("http://www.tizag.com/htmlT/htmlselect.php"));
    scene->addItem(webView);

    QGraphicsView *view = new QGraphicsView;
    view->setScene(scene);
    view->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