1--TEST--
2Parse HTML document with user error handler and error_reporting(0)
3--EXTENSIONS--
4dom
5--INI--
6error_reporting=0
7--FILE--
8<?php
9
10set_error_handler(function ($errno, $errstr, $errfile, $errline) {
11    var_dump($errno, $errstr);
12}, E_WARNING);
13
14DOM\HTMLDocument::createFromString('<html></html>');
15
16?>
17--EXPECT--
18int(2)
19string(113) "DOM\HTMLDocument::createFromString(): tree error unexpected-token-in-initial-mode in Entity, line: 1, column: 2-5"
20