From 48e7161457682c753ea25e49438576849a1bba51 Mon Sep 17 00:00:00 2001 From: Mehdi Achour Date: Sat, 30 Oct 2004 15:42:53 +0000 Subject: [PATCH] fix #29817 and #29818 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@171649 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../dom-domelement-getelementsbytagname.xml | 12 +++++++----- .../dom-domelement-getelementsbytagnamens.xml | 13 ++++++++----- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/reference/dom/functions/dom-domelement-getelementsbytagname.xml b/reference/dom/functions/dom-domelement-getelementsbytagname.xml index 51493393ec..08c0c11858 100644 --- a/reference/dom/functions/dom-domelement-getelementsbytagname.xml +++ b/reference/dom/functions/dom-domelement-getelementsbytagname.xml @@ -1,5 +1,5 @@ - + DOMElement->getElementsByTagName @@ -12,10 +12,12 @@ stringname - This function returns a new instance of class - DOMNodeList containing the elements with tagnames - matching the name parameter. Use "*" for the name to return all elements - within the document. + This function returns a new instance of the class + DOMNodeList of all descendant elements with a + given tag name, in the order in which they are + encountered in a preorder traversal of this element tree. Use "*" as + the name to return all elements within the element + tree. diff --git a/reference/dom/functions/dom-domelement-getelementsbytagnamens.xml b/reference/dom/functions/dom-domelement-getelementsbytagnamens.xml index 79678295cb..fe8c9e47eb 100644 --- a/reference/dom/functions/dom-domelement-getelementsbytagnamens.xml +++ b/reference/dom/functions/dom-domelement-getelementsbytagnamens.xml @@ -1,5 +1,5 @@ - + DOMElement->getElementsByTagNameNS @@ -13,10 +13,13 @@ stringlocalName - This function returns a new instance of class - DOMNodeList containing the elements in the - namespace namespaceURI having localName. - Use "*" for the name to return all elements within the document. + This function returns a new instance of the class + DOMNodeList, which lists all the descendant + elements with a given localName and + namespaceURI in the order in which they are + encountered in a preorder traversal of this element tree. + Use "*" for the local name to return all elements within the element + tree.