diff options
Diffstat (limited to 'WebKit/qt/tests/qwebelement/tst_qwebelement.cpp')
-rw-r--r-- | WebKit/qt/tests/qwebelement/tst_qwebelement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebKit/qt/tests/qwebelement/tst_qwebelement.cpp b/WebKit/qt/tests/qwebelement/tst_qwebelement.cpp index 8db0ec3..2f1097a 100644 --- a/WebKit/qt/tests/qwebelement/tst_qwebelement.cpp +++ b/WebKit/qt/tests/qwebelement/tst_qwebelement.cpp @@ -887,7 +887,7 @@ void tst_QWebElement::nullSelect() void tst_QWebElement::firstChildNextSibling() { - m_mainFrame->setHtml("<body><!--comment--><p>Test</p><!--another commend><table>"); + m_mainFrame->setHtml("<body><!--comment--><p>Test</p><!--another comment--><table>"); QWebElement body = m_mainFrame->findFirstElement("body"); QVERIFY(!body.isNull()); @@ -902,7 +902,7 @@ void tst_QWebElement::firstChildNextSibling() void tst_QWebElement::lastChildPreviousSibling() { - m_mainFrame->setHtml("<body><!--comment--><p>Test</p><!--another commend><table>"); + m_mainFrame->setHtml("<body><!--comment--><p>Test</p><!--another comment--><table>"); QWebElement body = m_mainFrame->findFirstElement("body"); QVERIFY(!body.isNull()); |