Changeset 79945 in webkit


Ignore:
Timestamp:
Feb 28, 2011 4:57:09 PM (13 years ago)
Author:
benjamin.poulain@nokia.com
Message:

2011-02-28 Benjamin Poulain <benjamin.poulain@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt][WK2] Add a way to test the WebKit 2 APIs
https://bugs.webkit.org/show_bug.cgi?id=55408

Add the build file for test to the build system.

  • Source/WebKit.pri: Add the include path for WebKit 2 APIs.
  • Source/WebKit.pro: Add the dependency to build the new test project.

2011-02-28 Benjamin Poulain <benjamin.poulain@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt][WK2] Add a way to test the WebKit 2 APIs
https://bugs.webkit.org/show_bug.cgi?id=55408

Add an initial test for the WebKit 2 APIs of Qt.

  • UIProcess/API/qt/tests/html/basic_page.html: Added.
  • UIProcess/API/qt/tests/qgraphicswkview/qgraphicswkview.pro: Added.
  • UIProcess/API/qt/tests/qgraphicswkview/tst_qgraphicswkview.cpp: Added. (View::View): (View::resizeEvent): (tst_QGraphicsWKView::init): (tst_QGraphicsWKView::cleanup): (tst_QGraphicsWKView::loadEmptyPage):
  • UIProcess/API/qt/tests/tests.pri: Added.
  • UIProcess/API/qt/tests/tests.pro: Added.
  • UIProcess/API/qt/tests/util.h: Added. (waitForSignal):
Location:
trunk
Files:
9 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r79925 r79945  
     12011-02-28  Benjamin Poulain  <benjamin.poulain@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt][WK2] Add a way to test the WebKit 2 APIs
     6        https://bugs.webkit.org/show_bug.cgi?id=55408
     7
     8        Add the build file for test to the build system.
     9
     10        * Source/WebKit.pri: Add the include path for WebKit 2 APIs.
     11        * Source/WebKit.pro: Add the dependency to build the new test project.
     12
    1132011-02-28  Balazs Kelemen  <kbalazs@webkit.org>
    214
  • trunk/Source/WebKit.pri

    r79925 r79945  
    5656    $$OUTPUT_DIR/include
    5757INCLUDEPATH += $$QT.script.includes
     58
     59webkit2 {
     60    INCLUDEPATH += $$OUTPUT_DIR/include/WebKit2
     61    # FIXME: Once the public header are well defined for WebKit2, this must go away.
     62    INCLUDEPATH += $$PWD/WebKit2/
     63}
    5864
    5965CONFIG -= warn_on
  • trunk/Source/WebKit.pro

    r79320 r79945  
    1414SUBDIRS += WebKit/qt/QtWebKit.pro
    1515
    16 webkit2:exists($$PWD/WebKit2/WebProcess.pro): SUBDIRS += WebKit2/WebProcess.pro
     16webkit2 {
     17    exists($$PWD/WebKit2/WebProcess.pro): SUBDIRS += WebKit2/WebProcess.pro
     18    exists($$PWD/WebKit2/UIProcess/API/qt/tests): SUBDIRS += WebKit2/UIProcess/API/qt/tests
     19}
    1720
    1821contains(QT_CONFIG, declarative) {
  • trunk/Source/WebKit2/ChangeLog

    r79943 r79945  
     12011-02-28  Benjamin Poulain  <benjamin.poulain@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt][WK2] Add a way to test the WebKit 2 APIs
     6        https://bugs.webkit.org/show_bug.cgi?id=55408
     7
     8        Add an initial test for the WebKit 2 APIs of Qt.
     9
     10        * UIProcess/API/qt/tests/html/basic_page.html: Added.
     11        * UIProcess/API/qt/tests/qgraphicswkview/qgraphicswkview.pro: Added.
     12        * UIProcess/API/qt/tests/qgraphicswkview/tst_qgraphicswkview.cpp: Added.
     13        (View::View):
     14        (View::resizeEvent):
     15        (tst_QGraphicsWKView::init):
     16        (tst_QGraphicsWKView::cleanup):
     17        (tst_QGraphicsWKView::loadEmptyPage):
     18        * UIProcess/API/qt/tests/tests.pri: Added.
     19        * UIProcess/API/qt/tests/tests.pro: Added.
     20        * UIProcess/API/qt/tests/util.h: Added.
     21        (waitForSignal):
     22
    1232011-02-28  Anders Carlsson  <andersca@apple.com>
    224
Note: See TracChangeset for help on using the changeset viewer.