Changeset 100996 in webkit
- Timestamp:
- Nov 22, 2011, 6:14:17 AM (14 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r100995 r100996 1 2011-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 1 13 2011-11-22 Pavel Feldman <pfeldman@google.com> 2 14 -
trunk/Source/WebKit2/UIProcess/API/qt/tests/qmltests/DesktopBehavior/tst_loadHtml.qml
r100923 r100996 8 8 width: 200 9 9 height: 400 10 focus: true 10 11 11 12 property string lastUrl … … 30 31 name: "DesktopWebViewLoadHtml" 31 32 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 32 42 function init() { 33 43 webView.lastUrl = "" … … 37 47 38 48 function test_baseUrlAfterLoadHtml() { 39 skip("Link Hovered is currently not working")40 49 loadSpy.clear() 41 50 linkHoveredSpy.clear()
Note:
See TracChangeset
for help on using the changeset viewer.