--TEST-- Test DOMDocument::loadHTMLFile when an empty string is passed --DESCRIPTION-- Verifies that an error message is showed if an empty string is passed as argument --CREDITS-- Antonio Diaz Ruiz --INI-- assert.bail=true --SKIPIF-- --FILE-- loadHTMLFile(""); assert($result === false); $doc = new DOMDocument(); $result = $doc->loadHTMLFile("text.html\0something"); assert($result === false); ?> --EXPECTF-- %r(PHP ){0,1}%rWarning: DOMDocument::loadHTMLFile(): Empty string supplied as input %s %r(PHP ){0,1}%rWarning: DOMDocument::loadHTMLFile(): Invalid file source %s