summaryrefslogtreecommitdiffstats
path: root/dom/url/tests/test_url.html
diff options
context:
space:
mode:
authorjanekptacijarabaci <janekptacijarabaci@seznam.cz>2017-08-10 17:47:40 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-02-21 19:51:21 +0100
commit2e1e954eac00c69c76a6fbbcc343a82516275ca2 (patch)
treeb85e3837e0c32cfec88b704f903cae40796d3ec4 /dom/url/tests/test_url.html
parentc023a51e604fb16f64f93a9ffb59bf18515d9033 (diff)
downloadUXP-2e1e954eac00c69c76a6fbbcc343a82516275ca2.tar
UXP-2e1e954eac00c69c76a6fbbcc343a82516275ca2.tar.gz
UXP-2e1e954eac00c69c76a6fbbcc343a82516275ca2.tar.lz
UXP-2e1e954eac00c69c76a6fbbcc343a82516275ca2.tar.xz
UXP-2e1e954eac00c69c76a6fbbcc343a82516275ca2.zip
JS - URL - add toJSON support
Diffstat (limited to 'dom/url/tests/test_url.html')
-rw-r--r--dom/url/tests/test_url.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/dom/url/tests/test_url.html b/dom/url/tests/test_url.html
index 3f3f727d6..d07a752bb 100644
--- a/dom/url/tests/test_url.html
+++ b/dom/url/tests/test_url.html
@@ -438,5 +438,11 @@
url = new URL("data:text/html,<a href=\"http://example.org/?q\">Link</a>");
is(url.href, "data:text/html,<a%20href=\"http://example.org/?q\">Link</a>");
</script>
+
+ <script>
+ var u = new URL('http://www.example.org');
+ ok(u.toJSON(), 'http://www.example.org', "URL.toJSON()");
+ is(JSON.stringify(u), "\"http://www.example.org/\"", "JSON.stringify(u) works");
+ </script>
</body>
</html>