mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
12 lines
287 B
HTML
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>
|