Changeset 100996 in webkit


Ignore:
Timestamp:
Nov 22, 2011, 6:14:17 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

[Qt][WK2] Fix and unskip loadHtml api test
https://bugs.webkit.org/show_bug.cgi?id=72916

Patch by Jesus Sanchez-Palencia <jesus.palencia@openbossa.org> on 2011-11-22
Reviewed by Andreas Kling.

Now that linkHovered events are working again we can fix and unskip this
loadHtml test.

  • UIProcess/API/qt/tests/qmltests/DesktopBehavior/tst_loadHtml.qml:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r100995 r100996  
     12011-11-22  Jesus Sanchez-Palencia  <jesus.palencia@openbossa.org>
     2
     3        [Qt][WK2] Fix and unskip loadHtml api test
     4        https://bugs.webkit.org/show_bug.cgi?id=72916
     5
     6        Reviewed by Andreas Kling.
     7
     8        Now that linkHovered events are working again we can fix and unskip this
     9        loadHtml test.
     10
     11        * UIProcess/API/qt/tests/qmltests/DesktopBehavior/tst_loadHtml.qml:
     12
    1132011-11-22  Pavel Feldman  <pfeldman@google.com>
    214
  • trunk/Source/WebKit2/UIProcess/API/qt/tests/qmltests/DesktopBehavior/tst_loadHtml.qml

    r100923 r100996  
    88    width: 200
    99    height: 400
     10    focus: true
    1011
    1112    property string lastUrl
     
    3031        name: "DesktopWebViewLoadHtml"
    3132
     33        // Delayed windowShown to workaround problems with Qt5 in debug mode.
     34        when: false
     35        Timer {
     36            running: parent.windowShown
     37            repeat: false
     38            interval: 1
     39            onTriggered: parent.when = true
     40        }
     41
    3242        function init() {
    3343            webView.lastUrl = ""
     
    3747
    3848        function test_baseUrlAfterLoadHtml() {
    39             skip("Link Hovered is currently not working")
    4049            loadSpy.clear()
    4150            linkHoveredSpy.clear()
Note: See TracChangeset for help on using the changeset viewer.