14 lines
357 B
PHP
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>
|