xref: /PHP-8.0/ext/dom/tests/bug79271.phpt (revision 09669411)
1--TEST--
2Bug #79271 (DOMDocumentType::$childNodes is NULL)
3--SKIPIF--
4<?php
5if (!extension_loaded('dom')) die('skip dom extension not available');
6?>
7--FILE--
8<?php
9$dom = new DOMImplementation();
10$type = $dom->createDocumentType('html');
11var_dump($type->childNodes);
12?>
13--EXPECTF--
14object(DOMNodeList)#%d (1) {
15  ["length"]=>
16  int(0)
17}
18