mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
17 lines
365 B
PHP
17 lines
365 B
PHP
--TEST--
|
|
Test DOMDocument::loadHTMLFile
|
|
--DESCRIPTION--
|
|
Verifies the basic behaviour of the method
|
|
--CREDITS--
|
|
Antonio Diaz Ruiz <dejalatele@gmail.com>
|
|
--INI--
|
|
assert.bail=true
|
|
--SKIPIF--
|
|
<?php include('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
$doc = new DOMDocument();
|
|
$result = $doc->loadHTMLFile(dirname(__FILE__) . "/test.html");
|
|
assert($result === true);
|
|
?>
|
|
--EXPECT--
|