https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 36d388fef77e4798427c074b5440b5cc1433e2ad authored by James Graham on 08 May 2015, 12:11:38 UTC
Replace usage of setTimeout with step_timeout in old-tests/Microsoft
Tip revision: 36d388f
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