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