php-src/ext/dom/tests/DOMAttr_value_basic_002.phpt
Eric Stewart a7fece4f7f New test: DOMAttr read $name property.
New test: DOMAttr read $ownerElement with null parent.
New test: DOMAttr write non-string $value property
New test: DOMCDATASection __construct() with no arguments.
New test: DOMCharacterData - Invalid State Error when getting data out of content.
2009-05-23 01:41:27 +00:00

15 lines
262 B
PHP

--TEST--
Write non-string $value property
--CREDIT--
Eric Berg <ehberg@gmail.com>
# TestFest Atlanta 2009-05-14
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$attr = new DOMAttr('category');
$attr->value = 1;
print $attr->value;
?>
--EXPECTF--
1