[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

andreas.kling at nokia.com andreas.kling at nokia.com
Wed Dec 22 11:18:47 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 788500570d71a5c2c70161837f92bfcfa7f68274
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Jul 18 22:55:38 2010 +0000

    2010-07-18  Andreas Kling  <andreas.kling at 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):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63637 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/qt/ChangeLog b/WebKit/qt/ChangeLog
index efbee15..0e24388 100644
--- a/WebKit/qt/ChangeLog
+++ b/WebKit/qt/ChangeLog
@@ -1,3 +1,16 @@
+2010-07-18  Andreas Kling  <andreas.kling at 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):
+
 2010-07-16  Zhe Su  <suzhe at chromium.org>
 
         Reviewed by Darin Adler.
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());

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list