1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/dom/tests/modern/xml/Element_insertAdjacentHTML_errors.phpt
2024-11-09 10:52:06 +01:00

18 lines
373 B
PHP

--TEST--
Dom\Element::insertAdjacentHTML() with XML nodes - errors
--EXTENSIONS--
dom
--FILE--
<?php
$dom = Dom\XMLDocument::createFromString('<root/>');
try {
$dom->documentElement->insertAdjacentHTML(Dom\AdjacentPosition::AfterBegin, "<non-well-formed>");
} catch (DOMException $e) {
echo $e->getMessage(), "\n";
}
?>
--EXPECT--
XML fragment is not well-formed