https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a160360fd9f39b7343c3da95f5ae7dbd8e0f47b8 authored by joysyu@google.com on 28 July 2017, 19:55:01 UTC
Overflow clipping on Row-spanning cells
Tip revision: a160360
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