mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
12 lines
225 B
HTML
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>
|