summaryrefslogtreecommitdiffstats
path: root/tests/manual/wasm/qwasmwindow/qwasmwindow_harness.cpp
diff options
context:
space:
mode:
authorMikolaj Boc <[email protected]>2023-02-15 10:25:44 +0100
committerMikolaj Boc <[email protected]>2023-02-23 09:17:44 +0100
commit2fffa21111824d41bf6831d8770e0a061bfee7fc (patch)
tree90dc281d7061ce664b485774d48b31798a142a4b /tests/manual/wasm/qwasmwindow/qwasmwindow_harness.cpp
parent4183768d9bc6f80ac7b86c3dbf93e6b251369ae4 (diff)
Add multitouch test cases to qwasmwindow test
Three touch points that move/resize three windows simultaneously are tested Change-Id: I17d0c8c6c5c90f5121a098e5b67174167cd5aaa5 Reviewed-by: Lorn Potter <[email protected]>
Diffstat (limited to 'tests/manual/wasm/qwasmwindow/qwasmwindow_harness.cpp')
-rw-r--r--tests/manual/wasm/qwasmwindow/qwasmwindow_harness.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/manual/wasm/qwasmwindow/qwasmwindow_harness.cpp b/tests/manual/wasm/qwasmwindow/qwasmwindow_harness.cpp
index bcbcacbd151..3a8f0693dfd 100644
--- a/tests/manual/wasm/qwasmwindow/qwasmwindow_harness.cpp
+++ b/tests/manual/wasm/qwasmwindow/qwasmwindow_harness.cpp
@@ -80,7 +80,8 @@ std::string windowToJSObject(const QWindow &window)
out << "{"
<< " id: " << std::to_string(window.winId()) << ","
<< " geometry: " << rectToJSObject(window.geometry()) << ","
- << " frameGeometry: " << rectToJSObject(window.frameGeometry()) << "}";
+ << " frameGeometry: " << rectToJSObject(window.frameGeometry()) << ","
+ << " title: '" << window.title().toStdString() << "' }";
return out.str();
}