1--TEST-- 2Test DOMDocument::loadHTMLFile when a not-well formed document is loaded 3--DESCRIPTION-- 4Verifies the behavior if a not-well formed document is loaded 5--CREDITS-- 6Antonio Diaz Ruiz <dejalatele@gmail.com> 7--EXTENSIONS-- 8dom 9--FILE-- 10<?php 11$doc = new DOMDocument(); 12$result = $doc->loadHTMLFile(__DIR__ . "/not_well.html"); 13assert($result === true); 14?> 15--EXPECT-- 16