0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-09-21 19:46:23 -04:00
Files
elinks/test/js/assert/element.id.html

15 lines
391 B
HTML
Raw Normal View History

2024-04-12 16:17:22 +02:00
<html>
<body>
<a href="/">inner</a>
<button id="blabla">AAAAA</button>
<button>BBBB</button>
<script>
console.error('element.id.html');
console.assert(document.getElementById('blabla').innerHTML === 'AAAAA', 'AAAAA');
document.getElementsByTagName("A")[0].id = 'test';
console.assert(document.getElementById('test').innerHTML === 'inner', 'inner');
console.exit();
2024-04-12 16:17:22 +02:00
</script>
</body>
</html>