rrichards               Wed May 17 16:36:21 2006 UTC

  Added files:                 (Branch: PHP_5_2)
    /php-src/ext/dom/tests      bug37456.phpt dom.xml dom.ent 
  Log:
  add tests
  

http://cvs.php.net/viewcvs.cgi/php-src/ext/dom/tests/bug37456.phpt?view=markup&rev=1.1
Index: php-src/ext/dom/tests/bug37456.phpt
+++ php-src/ext/dom/tests/bug37456.phpt
--TEST--
Bug # 37456 (DOMElement->setAttribute() loops forever)
--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


http://cvs.php.net/viewcvs.cgi/php-src/ext/dom/tests/dom.xml?view=markup&rev=1.1
Index: php-src/ext/dom/tests/dom.xml
+++ php-src/ext/dom/tests/dom.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE root [
<!ENTITY % incent SYSTEM "dom.ent">
%incent;
]>
<root>
   <foo bar="" />
</root>
http://cvs.php.net/viewcvs.cgi/php-src/ext/dom/tests/dom.ent?view=markup&rev=1.1
Index: php-src/ext/dom/tests/dom.ent
+++ php-src/ext/dom/tests/dom.ent
<!ENTITY amp     "&#38;#38;">
<!ENTITY gt      "&#62;">
<!ENTITY % coreattrs "title CDATA #IMPLIED">
<!ENTITY % attrs "%coreattrs;">
<!ATTLIST foo bar CDATA #IMPLIED>
<!ELEMENT foo (#PCDATA)>
<!ELEMENT root (foo)+>
<!ATTLIST th %attrs; >

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to