mirror of https://github.com/adamdruppe/arsd.git
more Html struct support
This commit is contained in:
parent
c69d8e838e
commit
ad98c2cbb1
5
dom.d
5
dom.d
|
@ -908,6 +908,11 @@ class Element {
|
||||||
doc.root.children = null;
|
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
|
Replaces this node with the given html string, which is parsed
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue