body hasnt been a keyword for a long time no need to keep lts anymore on that

This commit is contained in:
Adam D. Ruppe 2024-02-29 09:53:47 -05:00
parent a5f8b914d8
commit b0ac9c7e88
1 changed files with 9 additions and 1 deletions

10
dom.d
View File

@ -1407,11 +1407,19 @@ class Document : FileResource, DomParent {
return findFirst(&doesItMatch);
}
/// This returns the <body> element, if there is one. (It different than Javascript, where it is called 'body', because body is a keyword in D.)
/++
This returns the <body> 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) {