Changeset 63641 in webkit


Ignore:
Timestamp:
Jul 18, 2010 8:49:20 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_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):
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r63637 r63641  
     12010-07-18  Andreas Kling  <andreas.kling@nokia.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [Qt] tst_QWebPage fails cursorMovements and textSelection
     6        https://bugs.webkit.org/show_bug.cgi?id=42531
     7
     8        Correct the HTML used by these tests.
     9
     10        * tests/qwebpage/tst_qwebpage.cpp:
     11        (tst_QWebPage::cursorMovements):
     12        (tst_QWebPage::textSelection):
     13        (tst_QWebPage::textEditing):
     14
    1152010-07-18  Andreas Kling  <andreas.kling@nokia.com>
    216
  • trunk/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp

    r62913 r63641  
    863863{
    864864    CursorTrackedPage* page = new CursorTrackedPage;
    865     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>");
     865    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>");
    866866    page->mainFrame()->setHtml(content);
    867867
     
    10551055{
    10561056    CursorTrackedPage* page = new CursorTrackedPage;
    1057     QString content("<html><body<p id=one>The quick brown fox</p>" \
     1057    QString content("<html><body><p id=one>The quick brown fox</p>" \
    10581058        "<p id=two>jumps over the lazy dog</p>" \
    10591059        "<p>May the source<br/>be with you!</p></body></html>");
     
    11431143{
    11441144    CursorTrackedPage* page = new CursorTrackedPage;
    1145     QString content("<html><body<p id=one>The quick brown fox</p>" \
     1145    QString content("<html><body><p id=one>The quick brown fox</p>" \
    11461146        "<p id=two>jumps over the lazy dog</p>" \
    11471147        "<p>May the source<br/>be with you!</p></body></html>");
Note: See TracChangeset for help on using the changeset viewer.