1--TEST-- 2Dom\HTMLDocument::createFromString() - empty document 3--EXTENSIONS-- 4dom 5--FILE-- 6<?php 7 8$dom = Dom\HTMLDocument::createFromString(''); 9echo $dom->saveHtml(), "\n"; 10 11?> 12--EXPECT-- 13<html><head></head><body></body></html> 14