servo/tests/content/test_title.html
2014-09-08 20:21:42 -06:00

12 lines
225 B
HTML

<html>
<head>
<title>starting title</title>
<script src="harness.js"></script>
<script>
is(document.title, "starting title");
document.title = "new title";
is(document.title, "new title");
finish();
</script>
</head>
</html>