summaryrefslogtreecommitdiff
path: root/test/js
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2012-11-03 17:37:59 +0000
committerVincent Sanders <vince@netsurf-browser.org>2012-11-03 17:37:59 +0000
commit85c973f98648465ab065317f8e7db6153d093984 (patch)
treea38e78de2664042c56df277b91a4b7accdd4bdf7 /test/js
parente0f17a8d350c41f5dd304b7968a60bfec84c5b06 (diff)
downloadnetsurf-85c973f98648465ab065317f8e7db6153d093984.tar.gz
netsurf-85c973f98648465ab065317f8e7db6153d093984.tar.bz2
add jsstring to jsval conversion macro that copes with null jsstrings
Diffstat (limited to 'test/js')
-rw-r--r--test/js/dom-location.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/js/dom-location.html b/test/js/dom-location.html
new file mode 100644
index 000000000..bbd78d80b
--- /dev/null
+++ b/test/js/dom-location.html
@@ -0,0 +1,13 @@
+<html>
+<head>
+<title>Assign window.lately</title>
+<link rel="stylesheet" type="text/css" href="tst.css">
+</head>
+<body>
+<h1>Assign window.lately</h1>
+<p>location: <script>document.write(location);</script>
+<p>location.protocol: <script>document.write(location.protocol);</script>
+<p>equivalence <script>document.write(location.protocol === 'http:');</script>
+<p>assignement<script>window.lately = (location.protocol === 'http:');</script>
+</body>
+</html>