[Webkit-unassigned] [Bug 36292] New: The numbers are not displayed properly when entering through VKB in number mode

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 18 06:04:59 PDT 2010


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

           Summary: The numbers are not displayed properly when entering
                    through VKB in number mode
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebKit Qt
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: kristian.amlie at nokia.com
                CC: hausmann at webkit.org


Created an attachment (id=51020)
 --> (https://bugs.webkit.org/attachment.cgi?id=51020)
Patch

Steps to reproduce: 

1. Compile this program:
int main(int argc, char **argv)
{
    QApplication app(argc, argv);
    QWidget w;

    QLayout *layout = new QVBoxLayout;

    QGraphicsScene scene;
    QGraphicsView view(&scene);
    QGraphicsWebView *wv = new QGraphicsWebView;
    wv->load(QUrl("http://www.google.com/"));
    scene.addItem(wv);
    layout->addWidget(&view);

    w.setLayout(layout);
    w.showMaximized();
    return app.exec();
}

2. Tap the lineedit so the input panel opens.
3. Enter number mode.
4. Try to enter numbers.

The result is that the numbers lag behind, that is, when entering "23", the
first character will produce nothing, and the 3 will produce "2". Must be a
QInputContext::update issue, since the content is correct in the widget itself.

-- 
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