|
|
@@ -86,6 +86,14 @@ namespace MonoTests.System.Xml
|
|
|
Assert (!navigator.IsEmptyElement);
|
|
|
}
|
|
|
|
|
|
+ [Test]
|
|
|
+ public void PropertiesOnNamespace ()
|
|
|
+ {
|
|
|
+ document.LoadXml ("<root xmlns='urn:foo' />");
|
|
|
+ navigator = document.DocumentElement.Attributes [0].CreateNavigator ();
|
|
|
+ AssertEquals (XPathNodeType.Namespace, navigator.NodeType);
|
|
|
+ }
|
|
|
+
|
|
|
[Test]
|
|
|
public void Navigation ()
|
|
|
{
|