Subj : Re: E4X: result of parent() method call on XMLList
To : Martin.Honnen
From : Bob Clary
Date : Mon Apr 18 2005 12:59 pm
Martin Honnen wrote:
>
> Bob, is there a test case in the suite already covering the check that
> Kibo.parent()
> should yield null?
>
section 3 should cover it.
START("13.4.4.27 - XML parent()");
TEST(1, true, XML.prototype.hasOwnProperty("parent"));
x =
one
two
;
y = x.bravo;
TEST(2, x, y.parent());
TEST(3, null, x.parent());
END();
.