[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:55 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 0937ad5896598da10d4f26429e7c46d9cba49c33
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jul 19 03:49:20 2010 +0000

    2010-07-18  Andreas Kling  <andreas.kling at nokia.com>
    
            Reviewed by Antonio Gomes.
    
            [Qt] tst_QWebPage fails cursorMovements and textSelection
            https://bugs.webkit.org/show_bug.cgi?id=42531
    
            Correct the HTML used by these tests.
    
            * tests/qwebpage/tst_qwebpage.cpp:
            (tst_QWebPage::cursorMovements):
            (tst_QWebPage::textSelection):
            (tst_QWebPage::textEditing):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63641 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/qt/ChangeLog b/WebKit/qt/ChangeLog
index 0e24388..a6c17f0 100644
--- a/WebKit/qt/ChangeLog
+++ b/WebKit/qt/ChangeLog
@@ -2,6 +2,20 @@
 
         Reviewed by Antonio Gomes.
 
+        [Qt] tst_QWebPage fails cursorMovements and textSelection
+        https://bugs.webkit.org/show_bug.cgi?id=42531
+
+        Correct the HTML used by these tests.
+
+        * tests/qwebpage/tst_qwebpage.cpp:
+        (tst_QWebPage::cursorMovements):
+        (tst_QWebPage::textSelection):
+        (tst_QWebPage::textEditing):
+
+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
 
diff --git a/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp b/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp
index 70466c7..67e3ecd 100644
--- a/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp
+++ b/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp
@@ -862,7 +862,7 @@ public:
 void tst_QWebPage::cursorMovements()
 {
     CursorTrackedPage* page = new CursorTrackedPage;
-    QString content("<html><body<p id=one>The quick brown fox</p><p id=two>jumps over the lazy dog</p><p>May the source<br/>be with you!</p></body></html>");
+    QString content("<html><body><p id=one>The quick brown fox</p><p id=two>jumps over the lazy dog</p><p>May the source<br/>be with you!</p></body></html>");
     page->mainFrame()->setHtml(content);
 
     // this will select the first paragraph
@@ -1054,7 +1054,7 @@ void tst_QWebPage::cursorMovements()
 void tst_QWebPage::textSelection()
 {
     CursorTrackedPage* page = new CursorTrackedPage;
-    QString content("<html><body<p id=one>The quick brown fox</p>" \
+    QString content("<html><body><p id=one>The quick brown fox</p>" \
         "<p id=two>jumps over the lazy dog</p>" \
         "<p>May the source<br/>be with you!</p></body></html>");
     page->mainFrame()->setHtml(content);
@@ -1142,7 +1142,7 @@ void tst_QWebPage::textSelection()
 void tst_QWebPage::textEditing()
 {
     CursorTrackedPage* page = new CursorTrackedPage;
-    QString content("<html><body<p id=one>The quick brown fox</p>" \
+    QString content("<html><body><p id=one>The quick brown fox</p>" \
         "<p id=two>jumps over the lazy dog</p>" \
         "<p>May the source<br/>be with you!</p></body></html>");
     page->mainFrame()->setHtml(content);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list