summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2012-12-07 15:50:24 +0000
committerVincent Sanders <vince@netsurf-browser.org>2012-12-07 15:50:24 +0000
commit04825c62df92c8adef3f40f89c7b5d88b963f833 (patch)
treec25b0abd1934c0dd2aeccffd13083510c1fa6aa8 /test
parent99f93da0f3a510df51c5a057e7597c570a636f9d (diff)
downloadnetsurf-04825c62df92c8adef3f40f89c7b5d88b963f833.tar.gz
netsurf-04825c62df92c8adef3f40f89c7b5d88b963f833.tar.bz2
implement document.URL and document.documentURI
Diffstat (limited to 'test')
-rw-r--r--test/js/document-url.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/js/document-url.html b/test/js/document-url.html
new file mode 100644
index 000000000..2299b5775
--- /dev/null
+++ b/test/js/document-url.html
@@ -0,0 +1,31 @@
+<html>
+<head>
+<title>document location and URL interface</title>
+<link rel="stylesheet" type="text/css" href="tst.css">
+</head>
+<body>
+<h1>document location and URL interface</h1>
+
+<h2>Document location enumeration</h2>
+<script>
+function output(x,y) {
+ document.body.appendChild(document.createTextNode(x));
+ document.body.appendChild(document.createTextNode("("));
+ if (y != undefined) {
+ document.body.appendChild(document.createTextNode(y.length));
+ }
+ document.body.appendChild(document.createTextNode(") = "));
+ document.body.appendChild(document.createTextNode(y));
+ document.body.appendChild(document.createElement('br'));
+}
+
+for(var key in document.location) {
+ output(key, document.location[key]);
+}
+</script>
+<h2>Document URL</h2>
+<script>output("document.URL", document.URL);</script>
+<h2>DocumentURI</h2>
+<script>output("document.documentURI", document.documentURI);</script>
+</body>
+</html>