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

23 lines
410 B
Plaintext
Raw Normal View History

2006-05-17 16:36:21 +00:00
--TEST--
2007-07-24 14:07:42 +00:00
Bug #37456 (DOMElement->setAttribute() loops forever)
2006-05-17 16:36:21 +00:00
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$doc = new DOMDocument();
$doc->resolveExternals = true;
$doc->load(dirname(__FILE__)."/dom.xml");
$root = $doc->getElementsByTagName('foo')->item(0);
$root->setAttribute('bar', '&gt;');
$attr = $root->setAttribute('bar', 'newval');
print $attr->nodeValue;
?>
--EXPECT--
newval