1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/dom/tests/modern/html/parser/HTMLDocument_fromString_empty.phpt
2024-05-09 10:40:53 +02:00

14 lines
229 B
PHP

--TEST--
Dom\HTMLDocument::createFromString() - empty document
--EXTENSIONS--
dom
--FILE--
<?php
$dom = Dom\HTMLDocument::createFromString('');
echo $dom->saveHtml(), "\n";
?>
--EXPECT--
<html><head></head><body></body></html>