0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-06-30 22:19:29 -04:00
elinks/test/js/assert/URL.html

9 lines
292 B
HTML
Raw Normal View History

2024-04-29 16:17:22 +02:00
<script>
console.error("URL.html");
var url = new URL('https://www.example.com/cats');
console.assert(url.pathname === '/cats', url.pathname);
console.assert(url.protocol === 'https:', url.protocol);
console.assert(url.hostname === 'www.example.com', url.hostname);
console.exit();
2024-04-29 16:17:22 +02:00
</script>