xref: /PHP-7.3/ext/dom/tests/bug76285.phpt (revision b746e698)
1--TEST--
2Bug #76285 DOMDocument::formatOutput attribute sometimes ignored
3--FILE--
4<?php
5
6$dom = new DOMDocument();
7$dom->formatOutput = false;
8$html = '<div><div><a>test</a></div><div><a>test2</a></div></div>';
9$dom->loadHTML($html, LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD);
10$rootNode = $dom->documentElement;
11var_dump($dom->saveHTML($rootNode));
12var_dump($dom->saveHTML());
13
14?>
15--EXPECT--
16string(56) "<div><div><a>test</a></div><div><a>test2</a></div></div>"
17string(57) "<div><div><a>test</a></div><div><a>test2</a></div></div>
18"
19