Changeset 68760 in webkit


Ignore:
Timestamp:
Sep 30, 2010 12:10:01 AM (14 years ago)
Author:
benjamin.poulain@nokia.com
Message:

2010-09-30 Benjamin Poulain <benjamin.poulain@nokia.com>

Reviewed by Andreas Kling.

[Qt] Fix tst_QWebPage::geolocationRequestJS()
https://bugs.webkit.org/show_bug.cgi?id=46814

Disable the test. This test cannot pass with a
standard build of WebKit, it is disabled until the API is finilized.

  • tests/qwebpage/tst_qwebpage.cpp: (tst_QWebPage::geolocationRequestJS):
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/ChangeLog

    r68653 r68760  
     12010-09-30  Benjamin Poulain  <benjamin.poulain@nokia.com>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [Qt] Fix tst_QWebPage::geolocationRequestJS()
     6        https://bugs.webkit.org/show_bug.cgi?id=46814
     7
     8        Disable the test. This test cannot pass with a
     9        standard build of WebKit, it is disabled until the API is finilized.
     10
     11        * tests/qwebpage/tst_qwebpage.cpp:
     12        (tst_QWebPage::geolocationRequestJS):
     13
    1142010-09-29  Andreas Kling  <andreas.kling@nokia.com>
    215
  • trunk/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp

    r68517 r68760  
    248248void tst_QWebPage::geolocationRequestJS()
    249249{
     250    /*
     251      This test is disabled because it can only succeed if ENABLE(GEOLOCATION) is true.
     252      The code needs to be updated when the API of requestPermissionFromUser is updated.
     253    */
     254    QSKIP("Test disabled as long as geolocation is disabled from the build.", SkipSingle);
     255
    250256    JSTestPage* newPage = new JSTestPage(m_view);
    251257    connect(newPage, SIGNAL(requestPermissionFromUser(QWebFrame*, QWebPage::PermissionDomain)),
Note: See TracChangeset for help on using the changeset viewer.