summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortoofar <toofar@spalge.com>2023-03-25 18:38:27 +1300
committertoofar <toofar@spalge.com>2023-03-25 18:38:27 +1300
commitc5803587c12c167b4a7c84901db98b65fd590219 (patch)
tree7f2b1ba428e8611efe27968ebaf49e80959b7b7c
parentcb0b51c09463f5c3a53fccfb12077f2934db214e (diff)
downloadqutebrowser-c5803587c12c167b4a7c84901db98b65fd590219.tar.gz
qutebrowser-c5803587c12c167b4a7c84901db98b65fd590219.zip
tests: Add text content to another HTML file
I saw this test fail on windows at some point with what looked like the same issue. (Couldn't find an element to click.) ref; #7621
-rw-r--r--tests/end2end/data/editor.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/end2end/data/editor.html b/tests/end2end/data/editor.html
index eda6d51f0..4d4ad467a 100644
--- a/tests/end2end/data/editor.html
+++ b/tests/end2end/data/editor.html
@@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
- <title>Textarea</title>
+ <title>Editor</title>
<script type="text/javascript">
function log_text() {
elem = document.getElementById("qute-textarea");
@@ -11,6 +11,7 @@
</script>
</head>
<body>
+ <p>This is editor.html</p>
<textarea id="qute-textarea" oninput="log_text()"></textarea>
</body>
</html>