Added HTML idl definitions. Changed directory structure in src

This commit is contained in:
vidur
1998-07-15 16:54:19 +00:00
parent 785db60a5b
commit b3befc6d53
206 changed files with 35489 additions and 49 deletions

View File

@@ -34,12 +34,12 @@ function htmlString(node, indent)
// dump the attributes if any
attributes = node.attributes
if (null != attributes) {
html += " "
var countAttrs = attributes.length
var index = 0
while(index < countAttrs) {
att = attributes[index]
if (null != att) {
html += " "
html += att.name + "=" + att.value;
}
index++