17 lines
307 B
Plaintext
17 lines
307 B
Plaintext
|
|
--TEST--
|
||
|
|
Bug #77569 (Write Access Violation in DomImplementation)
|
||
|
|
--EXTENSIONS--
|
||
|
|
dom
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
$imp = new DOMImplementation;
|
||
|
|
$dom = $imp->createDocument("", "");
|
||
|
|
try {
|
||
|
|
$dom->encoding = null;
|
||
|
|
} catch (\ValueError $e) {
|
||
|
|
echo $e->getMessage() . \PHP_EOL;
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
Invalid document encoding
|