Changeset 63637 in webkit


Ignore:
Timestamp:
Jul 18, 2010 3:55:38 PM (14 years ago)
Author:
andreas.kling@nokia.com
Message:

2010-07-18 Andreas Kling <andreas.kling@nokia.com>

Reviewed by Antonio Gomes.

[Qt] tst_QWebElement fails firstChildNextSibling and lastChildPreviousSibling
https://bugs.webkit.org/show_bug.cgi?id=42527

Correct the HTML used by these tests.

  • tests/qwebelement/tst_qwebelement.cpp: (tst_QWebElement::firstChildNextSibling): (tst_QWebElement::lastChildPreviousSibling):
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r63602 r63637  
     12010-07-18  Andreas Kling  <andreas.kling@nokia.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [Qt] tst_QWebElement fails firstChildNextSibling and lastChildPreviousSibling
     6        https://bugs.webkit.org/show_bug.cgi?id=42527
     7
     8        Correct the HTML used by these tests.
     9
     10        * tests/qwebelement/tst_qwebelement.cpp:
     11        (tst_QWebElement::firstChildNextSibling):
     12        (tst_QWebElement::lastChildPreviousSibling):
     13
    1142010-07-16  Zhe Su  <suzhe@chromium.org>
    215
  • trunk/WebKit/qt/tests/qwebelement/tst_qwebelement.cpp

    r54711 r63637  
    888888void tst_QWebElement::firstChildNextSibling()
    889889{
    890     m_mainFrame->setHtml("<body><!--comment--><p>Test</p><!--another commend><table>");
     890    m_mainFrame->setHtml("<body><!--comment--><p>Test</p><!--another comment--><table>");
    891891
    892892    QWebElement body = m_mainFrame->findFirstElement("body");
     
    903903void tst_QWebElement::lastChildPreviousSibling()
    904904{
    905     m_mainFrame->setHtml("<body><!--comment--><p>Test</p><!--another commend><table>");
     905    m_mainFrame->setHtml("<body><!--comment--><p>Test</p><!--another comment--><table>");
    906906
    907907    QWebElement body = m_mainFrame->findFirstElement("body");
Note: See TracChangeset for help on using the changeset viewer.