ru_php/ext/dom/tests/modern/html/parser/gh17485.phpt

14 lines
357 B
PHP

--TEST--
GH-17485 (Self-closing tag on void elements shouldn't be a parse error/warning in \Dom\HTMLDocument)
--EXTENSIONS--
dom
--FILE--
<?php
$Data = "<!DOCTYPE HTML>\n<br />\n<input />";
$Document = \Dom\HTMLDocument::createFromString( $Data );
echo $Document->saveHTML();
?>
--EXPECT--
<!DOCTYPE html><html><head></head><body><br>
<input></body></html>