php-src/ext/dom/tests/DOMCharacterData_replaceWith_self.phpt
Niels Dossche 1cf2d216a2 Fix DOMCharacterData::replaceWith() with itself
Previously, when replacing the node with itself (or contained within
itself), the node disappeared.

Closes GH-11770.
2023-07-24 18:58:17 +02:00

15 lines
363 B
PHP

--TEST--
DOMCharacterData::replaceWith() with itself
--EXTENSIONS--
dom
--FILE--
<?php
$dom = new DOMDocument;
$dom->loadXML('<?xml version="1.0"?><container><![CDATA[Hello]]></container>');
$cdata = $dom->documentElement->firstChild;
$cdata->replaceWith($cdata);
echo $dom->saveXML();
?>
--EXPECT--
<?xml version="1.0"?>
<container><![CDATA[Hello]]></container>