1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-20 01:46:15 -04:00
elinks/test/ecmascript/assert/element.href.html
2024-07-07 14:43:38 +02:00

12 lines
287 B
HTML

<html>
<body>
<a id="b">BBB</a>
<script>
console.error("element.href.html");
document.getElementById('b').href='/';
console.assert(document.getElementById('b').outerHTML === '<a id="b" href="/">BBB</a>', document.getElementById('b').outerHTML);
console.exit();
</script>
</body>
</html>