mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
Merge branch 'PHP-7.4'
* PHP-7.4: Fix #78221: DOMNode::normalize() doesn't remove empty text nodes
This commit is contained in:
commit
68139dbdd8
2 changed files with 25 additions and 0 deletions
|
@ -1326,6 +1326,14 @@ void dom_normalize (xmlNodePtr nodep)
|
|||
break;
|
||||
}
|
||||
}
|
||||
strContent = xmlNodeGetContent(child);
|
||||
if (*strContent == '\0') {
|
||||
nextp = child->next;
|
||||
xmlUnlinkNode(child);
|
||||
php_libxml_node_free_resource(child);
|
||||
child = nextp;
|
||||
continue;
|
||||
}
|
||||
break;
|
||||
case XML_ELEMENT_NODE:
|
||||
dom_normalize (child);
|
||||
|
|
17
ext/dom/tests/bug78221.phpt
Normal file
17
ext/dom/tests/bug78221.phpt
Normal file
|
@ -0,0 +1,17 @@
|
|||
--TEST--
|
||||
Bug #78221 (DOMNode::normalize() doesn't remove empty text nodes)
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (!extension_loaded('dom')) die('skip dom extension not available');
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
$doc = new DOMDocument();
|
||||
$doc->loadHTML('<p id=x>foo</p>');
|
||||
$p = $doc->getElementById('x');
|
||||
$p->childNodes[0]->textContent = '';
|
||||
$p->normalize();
|
||||
var_dump($p->childNodes->length);
|
||||
?>
|
||||
--EXPECT--
|
||||
int(0)
|
Loading…
Add table
Add a link
Reference in a new issue