bug69373.phpt 354 B

1234567891011121314151617
  1. --TEST--
  2. Bug #69373 References to deleted XPath query results
  3. --EXTENSIONS--
  4. dom
  5. --FILE--
  6. <?php
  7. $doc = new DOMDocument();
  8. for( $i=0; $i<20; $i++ ) {
  9. $doc->loadXML("<parent><child /><child /></parent>");
  10. $xpath = new DOMXpath($doc);
  11. $all = $xpath->query('//*');
  12. $doc->firstChild->nodeValue = '';
  13. }
  14. echo 'DONE', PHP_EOL;
  15. ?>
  16. --EXPECT--
  17. DONE