1--TEST--
2Test DOMDocument::loadHTMLFile
3--DESCRIPTION--
4Verifies the basic behaviour of the method
5--CREDITS--
6Antonio Diaz Ruiz <dejalatele@gmail.com>
7--EXTENSIONS--
8dom
9--FILE--
10<?php
11$doc = new DOMDocument();
12$result = $doc->loadHTMLFile(__DIR__ . "/test.html");
13assert($result === true);
14?>
15--EXPECT--
16