Changeset 84189 in webkit


Ignore:
Timestamp:
Apr 18, 2011 2:56:21 PM (13 years ago)
Author:
yi.4.shen@nokia.com
Message:

2011-04-18 Yi Shen <yi.4.shen@nokia.com>

Reviewed by Laszlo Gombos.

[Qt][Symbian] Fix Api test failure -- tst_QWebFrame::inputFieldFocus
https://bugs.webkit.org/show_bug.cgi?id=57546

Disable the fullscreen VKB when testing inputFieldFocus().

  • tests/qwebframe/tst_qwebframe.cpp:
Location:
trunk/Source/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/qt/ChangeLog

    r84179 r84189  
     12011-04-18  Yi Shen  <yi.4.shen@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        [Qt][Symbian] Fix Api test failure -- tst_QWebFrame::inputFieldFocus
     6        https://bugs.webkit.org/show_bug.cgi?id=57546
     7
     8        Disable the fullscreen VKB when testing inputFieldFocus().
     9
     10        * tests/qwebframe/tst_qwebframe.cpp:
     11
    1122011-04-18  Andreas Kling  <kling@webkit.org>
    213
  • trunk/Source/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp

    r83184 r84189  
    27012701
    27022702    // focus the lineedit and check if it blinks
     2703    bool autoSipEnabled = qApp->autoSipEnabled();
     2704    qApp->setAutoSipEnabled(false);
    27032705    const QWebElement inputElement = view.page()->mainFrame()->documentElement().findFirst(QLatin1String("input[type=text]"));
    27042706    QTest::mouseClick(&view, Qt::LeftButton, 0, inputElement.geometry().center());
     
    27082710    QVERIFY2(m_inputFieldTestPaintCount >= 3,
    27092711             "The input field should have a blinking caret");
     2712    qApp->setAutoSipEnabled(autoSipEnabled);
    27102713}
    27112714
Note: See TracChangeset for help on using the changeset viewer.