Revision 7606bc9d6b70744b1afcdf8b946af67fce5211ec authored by Anne van Kesteren on 09 March 2017, 10:59:34 UTC, committed by Anne van Kesteren on 14 May 2018, 08:31:24 UTC
Closes #5064.
1 parent fcb5082
Raw File
url-tojson.html
<!doctype html>
<meta charset=utf-8>
<title>URL's toJSON()</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id=log></div>
<script>
test(() => {
  const a = new URL("https://example.com/")
  assert_equals(JSON.stringify(a), "\"https://example.com/\"")
})
</script>
back to top