1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00
elinks/test/ecmascript/assert/element.href.html

12 lines
287 B
HTML
Raw Normal View History

2024-07-07 08:43:38 -04:00
<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>