mirror of
https://github.com/php/php-src.git
synced 2026-04-14 19:41:05 +02:00
Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
15 lines
359 B
PHP
15 lines
359 B
PHP
--TEST--
|
|
Invalid State Error when getting length on DOMCharacterData out of content.
|
|
--CREDITS--
|
|
Jason Bouffard <jbouffard1@yahoo.com>
|
|
# TestFest Atlanta 2009-05-14
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
$character_data = new DOMCharacterData();
|
|
print $character_data->length;
|
|
?>
|
|
--EXPECTF--
|
|
Warning: main(): Invalid State Error in %s
|