mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
10 lines
317 B
HTML
10 lines
317 B
HTML
<html><body><div id="div"><p id="demo">aaa</p>BBB</div>
|
|
<script>
|
|
console.error("element.remove.html");
|
|
document.getElementById('demo').remove();
|
|
console.assert(document.getElementById('div').outerHTML === '<div id="div">BBB</div>', document.getElementById('div').outerHTML);
|
|
console.exit();
|
|
</script>
|
|
</body>
|
|
</html>
|