michael@0: /* -*- Mode: js; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: var node = document.documentElement michael@0: michael@0: node.nodeType michael@0: michael@0: node.tagName michael@0: michael@0: var attrList = node.attributes michael@0: michael@0: attrList.length michael@0: michael@0: var attr = attrList.item(0) michael@0: michael@0: attr.name michael@0: michael@0: attr.value michael@0: michael@0: node.hasChildNodes michael@0: michael@0: var children = node.childNodes michael@0: michael@0: children.length michael@0: michael@0: node = children.item(1); michael@0: node.nodeType michael@0: michael@0: node.tagName michael@0: michael@0: node = node.firstChild michael@0: michael@0: node = node.nextSibling michael@0: michael@0: node = node.parentNode michael@0: michael@0: