gecko-dev/dom/tests/js/DumpTree.js

61 строка
1.7 KiB
JavaScript
Исходник Обычный вид История

1998-04-15 22:55:21 +04:00
/* -*- Mode: js; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
1998-04-14 22:16:23 +04:00
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
1998-04-14 22:16:23 +04:00
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
1998-04-14 22:16:23 +04:00
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
1998-04-14 22:16:23 +04:00
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
1998-04-14 22:16:23 +04:00
*/
1998-04-14 00:24:54 +04:00
1998-04-14 22:16:23 +04:00
//
// travers the html tree and dump out the type of element
//
function traverse(node, indent)
1998-04-14 00:24:54 +04:00
{
dump("\n")
1998-04-14 00:24:54 +04:00
indent += " "
var type = node.nodeType;
1998-04-14 22:16:23 +04:00
// if it's an element dump the tag and recurse the children
if (type == Node.ELEMENT_NODE) {
1998-04-14 22:16:23 +04:00
dump(indent + node.tagName)
1998-04-14 22:16:23 +04:00
// go through the children
if (node.hasChildNodes()) {
var children = node.childNodes;
var length = children.length;
1998-04-14 00:24:54 +04:00
var count = 0;
while(count < length) {
child = children[count]
1998-04-14 22:16:23 +04:00
traverse(child, indent)
1998-04-14 00:24:54 +04:00
count++
}
}
}
1998-04-14 22:16:23 +04:00
// it's just text, no tag, dump "Text"
else if (type == Node.TEXT_NODE) {
dump(indent + "Text")
1998-04-14 00:24:54 +04:00
}
}
var node = document.documentElement
1998-04-14 22:16:23 +04:00
traverse(node, "")
dump("\n")
1998-04-14 00:24:54 +04:00
1998-04-14 22:16:23 +04:00