summaryrefslogtreecommitdiff
path: root/ext/dom/tests/bug80600.phpt
blob: 31f679c82bc1d27a9d7d3e32aa2ad925ed03fdd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
dom: DOMChildNode::remove does not work on character data
--FILE--
<?php

$doc = new \DOMDocument();
$doc->loadXML('<a><!-- foo --></a>');
$doc->documentElement->firstChild->remove();
echo $doc->saveXML($doc->documentElement);
--EXPECTF--
<a/>