mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
12 lines
215 B
HTML
12 lines
215 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");
|
|
</script>
|
|
</head>
|
|
</html>
|