summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qmltests/data
diff options
context:
space:
mode:
authorKirill Burtsev <kirill.burtsev@qt.io>2021-06-03 16:25:29 +0200
committerKirill Burtsev <kirill.burtsev@qt.io>2021-06-04 18:41:49 +0200
commitb3909c2d860a53e85eea51e77ee40ed8adf60842 (patch)
tree2996cf4b35427d15ea185204109efbbd856f98ae /tests/auto/quick/qmltests/data
parent742b9db0e34c8fc08e9f50c3053aed5f501f08d2 (diff)
WebEngineView: rename navigationHistory to history
Match widgets API name for the same QWebEngineHistory class [ChangeLog][QWebEngineQuick][WebEngineView] 'navigationHistory' property is now just 'history' Change-Id: I78507929baa84c8be08f79050568d04868171b3f Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'tests/auto/quick/qmltests/data')
-rw-r--r--tests/auto/quick/qmltests/data/tst_navigationHistory.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/auto/quick/qmltests/data/tst_navigationHistory.qml b/tests/auto/quick/qmltests/data/tst_navigationHistory.qml
index 26f1fade4..d5073bef1 100644
--- a/tests/auto/quick/qmltests/data/tst_navigationHistory.qml
+++ b/tests/auto/quick/qmltests/data/tst_navigationHistory.qml
@@ -38,7 +38,7 @@ TestWebEngineView {
ListView {
id: backItemsList
anchors.fill: parent
- model: webEngineView.navigationHistory.backItems
+ model: webEngineView.history.backItems
currentIndex: count - 1
delegate:
Text {
@@ -50,7 +50,7 @@ TestWebEngineView {
ListView {
id: forwardItemsList
anchors.fill: parent
- model: webEngineView.navigationHistory.forwardItems
+ model: webEngineView.history.forwardItems
currentIndex: 0
delegate:
Text {
@@ -75,7 +75,7 @@ TestWebEngineView {
name: "NavigationHistory"
function test_navigationHistory() {
- webEngineView.navigationHistory.clear()
+ webEngineView.history.clear()
webEngineView.url = Qt.resolvedUrl("test1.html")
verify(webEngineView.waitForLoadSucceeded())
@@ -147,7 +147,7 @@ TestWebEngineView {
compare(backItemsList.currentItem.text, Qt.resolvedUrl("test1.html"))
compare(forwardItemsList.currentItem.text, Qt.resolvedUrl("javascript.html"))
- webEngineView.navigationHistory.clear()
+ webEngineView.history.clear()
compare(webEngineView.url, Qt.resolvedUrl("test2.html"))
compare(webEngineView.canGoBack, false)
compare(webEngineView.canGoForward, false)
@@ -156,7 +156,7 @@ TestWebEngineView {
}
function test_navigationButtons() {
- webEngineView.navigationHistory.clear()
+ webEngineView.history.clear()
const url1 = Qt.resolvedUrl("test1.html")
webEngineView.url = url1