mirror of
https://github.com/servo/servo.git
synced 2025-06-12 10:24:43 +00:00
13 lines
215 B
HTML
13 lines
215 B
HTML
<html>
|
|
<head>
|
|
<title></title>
|
|
<script src="harness.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
is(window.document.title, '');
|
|
window.document.title = 'foo';
|
|
is(window.document.title, 'foo');
|
|
</script>
|
|
</body>
|
|
</html>
|