mirror of
https://github.com/servo/servo.git
synced 2025-06-12 18:34:39 +00:00
11 lines
215 B
HTML
11 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>
|