diff --git a/dom.d b/dom.d index 3b947fc..b9950be 100644 --- a/dom.d +++ b/dom.d @@ -1407,11 +1407,19 @@ class Document : FileResource, DomParent { return findFirst(&doesItMatch); } - /// This returns the element, if there is one. (It different than Javascript, where it is called 'body', because body is a keyword in D.) + /++ + This returns the element, if there is one. (It different than Javascript, where it is called 'body', because body used to be a keyword in D.) + + History: + `body` alias added February 26, 2024 + +/ Element mainBody() { return getFirstElementByTagName("body"); } + /// ditto + alias body = mainBody; + /// this uses a weird thing... it's [name=] if no colon and /// [property=] if colon string getMeta(string name) {