https://github.com/web-platform-tests/wpt
Raw File
Tip revision: d7971f8bb6faedcb2b39c0b964f62add100b0df1 authored by Hiroki Nakagawa on 08 January 2018, 15:21:17 UTC
Worker: Upstream fast/workers/worker-timeout.html to WPT
Tip revision: d7971f8
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