ru_php/ext/dom/tests/DOMImplementation_createDocument_basic.phpt

14 lines
226 B
PHP

--TEST--
DOMImplementation::createDocument()
--EXTENSIONS--
dom
--FILE--
<?php
declare(strict_types=1);
$x = new DOMImplementation();
$doc = $x->createDocument(null, 'html');
echo $doc->saveHTML();
?>
--EXPECT--
<html></html>