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

6 lines
240 B
HTML
Raw Normal View History

2024-07-06 05:09:01 -04: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>