bug79271.phpt 266 B

123456789101112131415
  1. --TEST--
  2. Bug #79271 (DOMDocumentType::$childNodes is NULL)
  3. --EXTENSIONS--
  4. dom
  5. --FILE--
  6. <?php
  7. $dom = new DOMImplementation();
  8. $type = $dom->createDocumentType('html');
  9. var_dump($type->childNodes);
  10. ?>
  11. --EXPECTF--
  12. object(DOMNodeList)#%d (1) {
  13. ["length"]=>
  14. int(0)
  15. }