some html5 convenience

This commit is contained in:
Adam D. Ruppe 2011-11-11 20:12:19 -05:00
parent d6c4ed6fbf
commit 7d35054cb5
1 changed files with 16 additions and 0 deletions

16
dom.d
View File

@ -480,6 +480,19 @@ class Element {
if(childInfo !is null)
switch(tagName) {
/* html5 convenience tags */
case "audio":
if(childInfo.length)
e.addChild("source", childInfo);
if(childInfo2 !is null)
e.appendText(childInfo2);
break;
case "source":
e.src = childInfo;
if(childInfo2 !is null)
e.type = childInfo2;
break;
/* regular html 4 stuff */
case "img":
e.src = childInfo;
if(childInfo2 !is null)
@ -510,8 +523,11 @@ class Element {
if(childInfo2 !is null)
e.content = childInfo2;
break;
/* generically, assume we were passed text and perhaps class */
default:
e.innerText = childInfo;
if(childInfo2.length)
e.className = childInfo2;
}
return e;