Changeset 57388 in webkit


Ignore:
Timestamp:
Apr 9, 2010 5:51:28 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-09 Yi Shen <yi.4.shen@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] tst_QWebFrame::popupFocus() fails
https://bugs.webkit.org/show_bug.cgi?id=37320

The QWebPopup class has been moved & renamed, so tst_QWebFrame::popupFocus() should use
the class name "QComboBox", rather than "WebCore::QWebPopup" to find the popup menu.

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

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r57357 r57388  
     12010-04-09  Yi Shen  <yi.4.shen@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] tst_QWebFrame::popupFocus() fails
     6        https://bugs.webkit.org/show_bug.cgi?id=37320
     7
     8        The QWebPopup class has been moved & renamed, so tst_QWebFrame::popupFocus() should use
     9        the class name "QComboBox", rather than "WebCore::QWebPopup" to find the popup menu.
     10
     11        * tests/qwebframe/tst_qwebframe.cpp:
     12
    1132010-04-09  Antonio Gomes  <tonikitoo@webkit.org>
    214
  • trunk/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp

    r57277 r57388  
    25162516    // open the popup by clicking. check if focus is on the popup
    25172517    QTest::mouseClick(&view, Qt::LeftButton, 0, QPoint(25, 25));
    2518     QObject* webpopup = firstChildByClassName(&view, "WebCore::QWebPopup");
     2518    QObject* webpopup = firstChildByClassName(&view, "QComboBox");
    25192519    QComboBox* combo = qobject_cast<QComboBox*>(webpopup);
    25202520    QVERIFY(combo != 0);
Note: See TracChangeset for help on using the changeset viewer.