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

6 lines
240 B
HTML
Raw Normal View History

2024-07-06 11:09:01 +02:00
<script>
console.error('DOMParser.html');
var a = new DOMParser().parseFromString("<html><body><div id='aa'>AAA</div></body></html>", "text/html");
console.assert(a.getElementById('aa').innerText === 'AAA', 'AAA');
console.exit();
</script>