Add tests/manual/completion/changing_title.html

This commit is contained in:
Florian Bruhin 2016-08-08 09:42:08 +02:00
parent 734216bc40
commit 4505d74ae3

View File

@ -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>