Source-Repo: https://github.com/servo/servo Source-Revision: bb7621f5dc33dd5068a3a4de7cdfe3af8b3d4130
14 lines
215 B
HTML
14 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>
|