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

23 lines
396 B
PHP

--TEST--
Bug # 38850 (lookupNamespaceURI does not return default namespace)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$xml = b<<<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