mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
14 lines
229 B
PHP
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>
|