Revision 68318aca8a81999476d7422efc7302f252162cf2 authored by L. David Baron on 24 July 2018, 15:38:00 UTC, committed by GitHub on 24 July 2018, 15:38:00 UTC
This contains a single change, from [bug 1311892](https://bugzilla.mozilla.org/show_bug.cgi?id=1311892), by @iyermihir, reviewed by @dholbert.
1 parent 9a716de
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