servo/tests/content/test_proxy_setter.html
2014-09-08 20:21:42 -06:00

14 lines
225 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');
finish();
</script>
</body>
</html>