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--INI-- 8assert.bail=true 9--SKIPIF-- 10<?php include('skipif.inc'); ?> 11--FILE-- 12<?php 13$doc = new DOMDocument(); 14$result = $doc->loadHTMLFile(dirname(__FILE__) . "/not_well.html"); 15assert('$result === true'); 16?> 17--EXPECT-- 18