php-src/ext/dom/tests/bug38850.phpt
Rob Richards 1819e947f9 implement workaround for bug #38823 (DOMComment->appendData does nothing)
fix bug #38850 (lookupNamespaceURI doesn't return default namespace)
add test
2006-09-16 13:54:52 +00:00

23 lines
395 B
PHP

--TEST--
Bug # 38850 (lookupNamespaceURI does not return default namespace)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$xml = <<<HERE
<?xml version="1.0" ?>
<foo xmlns="http://www.example.com/ns/foo" />
HERE;
$doc = new DOMDocument();
$doc->loadXML($xml);
$root = $doc->documentElement;
print $root->lookupNamespaceURI(NULL);
?>
--EXPECT--
http://www.example.com/ns/foo