summaryrefslogtreecommitdiff
path: root/tests/manual
diff options
context:
space:
mode:
authorFlorian Bruhin <git@the-compiler.org>2016-08-08 09:42:08 +0200
committerFlorian Bruhin <git@the-compiler.org>2016-08-08 09:42:08 +0200
commit4505d74ae32c8727b02e871dd856ec320a1f29a2 (patch)
treeffb8cdd65ceda5b61babb3bb33d69e98798ad2c4 /tests/manual
parent734216bc40145c402f95e207d71655855faee0b5 (diff)
downloadqutebrowser-4505d74ae32c8727b02e871dd856ec320a1f29a2.tar.gz
qutebrowser-4505d74ae32c8727b02e871dd856ec320a1f29a2.zip
Add tests/manual/completion/changing_title.html
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/completion/changing_title.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/manual/completion/changing_title.html b/tests/manual/completion/changing_title.html
new file mode 100644
index 000000000..19e0e6c05
--- /dev/null
+++ b/tests/manual/completion/changing_title.html
@@ -0,0 +1,11 @@
+<head>
+ <title>Old title</title>
+ <script type="text/javascript">
+ setTimeout(function(){ document.title = "New title"; }, 3000);
+ </script>
+</head>
+
+<body>
+ <p>This page should change its title after 3s.</p>
+ <p>When opening the :buffer completion ("gt"), the title should update while it's open.</p>
+</body>