From ad98c2cbb1eaf3db6aa32fba107aaf5079f76324 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 1 Sep 2011 16:58:14 -0400 Subject: [PATCH] more Html struct support --- dom.d | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dom.d b/dom.d index db2787c..a26a1de 100644 --- a/dom.d +++ b/dom.d @@ -908,6 +908,11 @@ class Element { doc.root.children = null; } + /// ditto + @property void innerHTML(Html html) { + this.innerHTML = html.source; + } + /** Replaces this node with the given html string, which is parsed