1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-20 01:46:15 -04:00
elinks/test/ecmascript/assert/domparser.html
2024-07-06 11:09:01 +02:00

6 lines
240 B
HTML

<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>