servo/tests/content/test_proxy_setter.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>