Changeset 82074 in webkit


Ignore:
Timestamp:
Mar 27, 2011 11:26:11 AM (13 years ago)
Author:
yi.4.shen@nokia.com
Message:

2011-03-27 Yi Shen <yi.4.shen@nokia.com>

Reviewed by Andreas Kling.

[Qt][Symbian] Fix Api test failure -- microFocusCoordinates
https://bugs.webkit.org/show_bug.cgi?id=57108

Since the canvas is not self-closing tag, we need to add '</canvas>'.

  • tests/qgraphicswebview/tst_qgraphicswebview.cpp: (tst_QGraphicsWebView::microFocusCoordinates):
  • tests/qwebview/tst_qwebview.cpp: (tst_QWebView::microFocusCoordinates):
Location:
trunk/Source/WebKit/qt
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/qt/ChangeLog

    r82073 r82074  
     12011-03-27  Yi Shen  <yi.4.shen@nokia.com>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [Qt][Symbian] Fix Api test failure -- microFocusCoordinates
     6        https://bugs.webkit.org/show_bug.cgi?id=57108
     7
     8        Since the canvas is not self-closing tag, we need to add '</canvas>'.
     9
     10        * tests/qgraphicswebview/tst_qgraphicswebview.cpp:
     11        (tst_QGraphicsWebView::microFocusCoordinates):
     12        * tests/qwebview/tst_qwebview.cpp:
     13        (tst_QWebView::microFocusCoordinates):
     14
    1152011-03-27  Kwang Yul Seo  <skyul@company100.net>
    216
  • trunk/Source/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.cpp

    r81886 r82074  
    205205    page->mainFrame()->setHtml("<html><body>" \
    206206        "<input type='text' id='input1' style='font--family: serif' value='' maxlength='20'/><br>" \
    207         "<canvas id='canvas1' width='500' height='500'/>" \
     207        "<canvas id='canvas1' width='500' height='500'></canvas>" \
    208208        "<input type='password'/><br>" \
    209         "<canvas id='canvas2' width='500' height='500'/>" \
     209        "<canvas id='canvas2' width='500' height='500'></canvas>" \
    210210        "</body></html>");
    211211
  • trunk/Source/WebKit/qt/tests/qwebview/tst_qwebview.cpp

    r81775 r82074  
    209209    page->mainFrame()->setHtml("<html><body>" \
    210210        "<input type='text' id='input1' style='font--family: serif' value='' maxlength='20'/><br>" \
    211         "<canvas id='canvas1' width='500' height='500'/>" \
     211        "<canvas id='canvas1' width='500' height='500'></canvas>" \
    212212        "<input type='password'/><br>" \
    213         "<canvas id='canvas2' width='500' height='500'/>" \
     213        "<canvas id='canvas2' width='500' height='500'></canvas>" \
    214214        "</body></html>");
    215215
Note: See TracChangeset for help on using the changeset viewer.