1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/dom/tests/bug78025.phpt
Niels Dossche f209eb448e Fix tests for libxml2 2.14
See GH-18009.
2025-03-10 20:22:11 +01:00

14 lines
265 B
PHP

--TEST--
Bug #78025 (segfault when accessing properties of DOMDocumentType)
--EXTENSIONS--
dom
--FILE--
<?php
$htm = "<!DOCTYPE><html></html>";
$dom = new DOMDocument;
$dom->loadHTML($htm, LIBXML_NOERROR);
var_dump($dom->doctype->name);
?>
--EXPECTF--
string(0) ""