mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-22 02:09:24 +00:00
LibWeb: Add non-const variants of Document::{html_element,body,head}()
This commit is contained in:
parent
46f2c278b0
commit
b6004a4ce1
Notes:
sideshowbarker
2024-07-18 18:37:33 +09:00
Author: https://github.com/Lubrsi
Commit: b6004a4ce1
Pull-request: https://github.com/SerenityOS/serenity/pull/6905
2 changed files with 22 additions and 6 deletions
|
@ -91,9 +91,25 @@ public:
|
|||
Element* document_element();
|
||||
const Element* document_element() const;
|
||||
|
||||
const HTML::HTMLHtmlElement* html_element() const;
|
||||
const HTML::HTMLHeadElement* head() const;
|
||||
const HTML::HTMLElement* body() const;
|
||||
HTML::HTMLHtmlElement* html_element();
|
||||
HTML::HTMLHeadElement* head();
|
||||
HTML::HTMLElement* body();
|
||||
|
||||
const HTML::HTMLHtmlElement* html_element() const
|
||||
{
|
||||
return const_cast<Document*>(this)->html_element();
|
||||
}
|
||||
|
||||
const HTML::HTMLHeadElement* head() const
|
||||
{
|
||||
return const_cast<Document*>(this)->head();
|
||||
}
|
||||
|
||||
const HTML::HTMLElement* body() const
|
||||
{
|
||||
return const_cast<Document*>(this)->body();
|
||||
}
|
||||
|
||||
ExceptionOr<void> set_body(HTML::HTMLElement& new_body);
|
||||
|
||||
String title() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue