Changeset 94027 in webkit
- Timestamp:
- Aug 29, 2011, 4:19:43 PM (15 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/API/qt/tests/qmltests/DesktopWebView/tst_properties.qml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r94007 r94027 1 2011-08-29 Gopal Raghavan <gopal.1.raghavan@nokia.com> 2 3 [Qt] QDesktopWebView url property test missing 4 https://bugs.webkit.org/show_bug.cgi?id=67155 5 6 Reviewed by Noam Rosenthal. 7 8 Added qml test case to check url property. Since url is a readonly property, we make sure that it's set after load() is called. 9 10 * UIProcess/API/qt/tests/qmltests/DesktopWebView/tst_properties.qml: 11 1 12 2011-08-29 Sheriff Bot <webkit.review.bot@gmail.com> 2 13 -
trunk/Source/WebKit2/UIProcess/API/qt/tests/qmltests/DesktopWebView/tst_properties.qml
r92277 r94027 21 21 compare(webView.title, "Test page 1") 22 22 } 23 24 function test_url() { 25 compare(spy.count, 1) 26 var testUrl = Qt.resolvedUrl("../common/test1.html") 27 webView.load(testUrl) 28 spy.wait() 29 compare(webView.url, testUrl) 30 } 23 31 } 24 32 }
Note:
See TracChangeset
for help on using the changeset viewer.