diff options
Diffstat (limited to 'files/de/web/api/node/index.html')
-rw-r--r-- | files/de/web/api/node/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/de/web/api/node/index.html b/files/de/web/api/node/index.html index 9f725381a2..cae595bf66 100644 --- a/files/de/web/api/node/index.html +++ b/files/de/web/api/node/index.html @@ -18,7 +18,7 @@ translation_of: Web/API/Node <dl> <dt>{{domxref("Node.baseURI")}} {{readonlyInline}}</dt> <dd>Returns a {{domxref("DOMString")}} representing the base URL. The concept of base URL changes from one language to another; in HTML, it corresponds to the protocol, the domain name and the directory structure, that is all until the last <code>'/'</code>.</dd> - <dt>{{domxref("Node.baseURIObject")}} {{Non-standard_inline()}} {{ Fx_minversion_inline("3") }}</dt> + <dt>{{domxref("Node.baseURIObject")}} {{Non-standard_inline()}}</dt> <dd>(Not available to web content.) The read-only {{ Interface("nsIURI") }} object representing the base URI for the element.</dd> <dt>{{domxref("Node.childNodes")}} {{readonlyInline}}</dt> <dd>Returns a live {{domxref("NodeList")}} containing all the children of this node. {{domxref("NodeList")}} being live means that if the children of the <code>Node</code> change, the {{domxref("NodeList")}} object is automatically updated.</dd> @@ -36,7 +36,7 @@ translation_of: Web/API/Node <dd>Returns a {{domxref("Node")}} representing the next node in the tree, or <code>null</code> if there isn't such node.</dd> <dt>{{domxref("Node.nodeName")}} {{readonlyInline}}</dt> <dd>Returns a {{domxref("DOMString")}} containing the name of the <code>Node</code>. The structure of the name will differ with the name type. E.g. An {{domxref("HTMLElement")}} will contain the name of the corresponding tag, like <code>'audio'</code> for an {{domxref("HTMLAudioElement")}}, a {{domxref("Text")}} node will have the <code>'#text'</code> string, or a {{domxref("Document")}} node will have the <code>'#document'</code> string.</dd> - <dt>{{domxref("Node.nodePrincipal")}} {{Non-standard_inline()}}{{ Fx_minversion_inline("3") }}</dt> + <dt>{{domxref("Node.nodePrincipal")}} {{Non-standard_inline()}}</dt> <dd>A {{ Interface("nsIPrincipal") }} representing the node principal.</dd> <dt>{{domxref("Node.nodeType")}}{{readonlyInline}}</dt> <dd>Returns an <code>unsigned short</code> representing the type of the node. Possible values are: |