fix addChild(html) and CDATA handling (sort of)

This commit is contained in:
Adam D. Ruppe 2011-08-24 19:12:31 -04:00
parent 20d971be0f
commit 5e2c7d9f57
1 changed files with 9 additions and 0 deletions

9
dom.d
View File

@ -498,6 +498,7 @@ class Element {
Element addChild(string tagName, Html innerHtml) {
auto e = parentDocument.createElement(tagName);
this.appendChild(e);
e.innerHTML = innerHtml.source;
return e;
}
@ -2213,6 +2214,14 @@ class Document {
assert(data[pos] == '-');
pos++;
assert(data[pos] == '>');
} else if(data[pos..pos + 7] == "[CDATA[") {
pos += 7;
// FIXME: major malfunction possible here
auto cdataStart = pos;
auto cdataEnd = pos + data[pos .. $].indexOf("]]>");
pos = cdataEnd + 3;
return Ele(0, new TextNode(this, data[cdataStart .. cdataEnd]), null);
} else
while(data[pos] != '>')
pos++;