]> granicus.if.org Git - php/commitdiff
Added (failing) testcase for bug #54382
authorArnout Boks <arnoutboks@gmail.com>
Wed, 25 Jan 2017 20:03:50 +0000 (21:03 +0100)
committerJoe Watkins <krakjoe@php.net>
Wed, 25 Jan 2017 20:59:23 +0000 (20:59 +0000)
ext/dom/tests/bug54382.phpt [new file with mode: 0644]

diff --git a/ext/dom/tests/bug54382.phpt b/ext/dom/tests/bug54382.phpt
new file mode 100644 (file)
index 0000000..fa12b0e
--- /dev/null
@@ -0,0 +1,27 @@
+--TEST--
+Bug #54382 DOMNode::getAttributeNodeNS doesn't get xmlns* attributes
+--SKIPIF--
+<?php
+require_once('skipif.inc');
+?>
+--FILE--
+<?php
+$xmlString = '<?xml version="1.0" encoding="utf-8" ?>
+<root xmlns="http://ns" xmlns:ns2="http://ns2">
+    <ns2:child />
+</root>';
+
+$xml=new DOMDocument();
+$xml->loadXML($xmlString);
+$de = $xml->documentElement;
+
+$ns2 = $de->getAttributeNodeNS("http://www.w3.org/2000/xmlns/", "ns2");
+if ($ns2 == NULL) {
+  echo 'namespace node does not exist.' . "\n";
+} else {
+  echo 'namespace node prefix=' . $ns2->prefix . "\n";
+  echo 'namespace node namespaceURI=' . $ns2->namespaceURI . "\n";
+}
+--EXPECT--
+namespace node prefix=ns2
+namespace node namespaceURI=http://ns2