summaryrefslogtreecommitdiff
path: root/ext/dom/tests/DOMImplementation_createDocument_basic.phpt
blob: 23a8e04b241d84d3bb3474bcb30e218f8cc140c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
DOMImplementation::createDocument()
--SKIPIF--
<?php
include('skipif.inc');
?>
--FILE--
<?php
declare(strict_types=1);
$x = new DOMImplementation();
$doc = $x->createDocument(null, 'html');
echo $doc->saveHTML();
?>
--EXPECT--
<html></html>