php-src/ext/dom/tests/DOMAttr_value_basic_001.phpt

17 lines
269 B
Plaintext
Raw Normal View History

2009-08-26 17:17:58 +00:00
--TEST--
Read empty $value.
2012-05-15 10:42:14 +00:00
--CREDITS--
2009-08-26 17:17:58 +00:00
Jason Bouffard <jbouffard1@yahoo.com>
# TestFest Atlanta 2009-05-14
2009-09-11 21:57:04 +00:00
--SKIPIF--
<?php require_once('skipif.inc'); ?>
2009-08-26 17:17:58 +00:00
--FILE--
<?php
$attr = new DOMAttr('category');
print $attr->value."\n";
?>
2009-09-11 21:57:04 +00:00
===DONE===
2009-08-26 17:17:58 +00:00
--EXPECTF--
2009-09-11 21:57:04 +00:00
===DONE===
2012-05-15 10:42:14 +00:00