aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/content/test_proxy_setter.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/content/test_proxy_setter.html')
-rw-r--r--src/test/content/test_proxy_setter.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/content/test_proxy_setter.html b/src/test/content/test_proxy_setter.html
new file mode 100644
index 00000000000..0d18f111599
--- /dev/null
+++ b/src/test/content/test_proxy_setter.html
@@ -0,0 +1,14 @@
+<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>