mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-16 07:11:52 +00:00
LibWeb: Implement HTMLScriptElement.async
This commit is contained in:
parent
4cc972a8ae
commit
7f0920b0e9
Notes:
sideshowbarker
2024-07-17 05:01:20 +09:00
Author: https://github.com/awesomekling
Commit: 7f0920b0e9
Pull-request: https://github.com/SerenityOS/serenity/pull/23964
3 changed files with 34 additions and 1 deletions
|
@ -58,6 +58,9 @@ public:
|
|||
String text() { return child_text_content(); }
|
||||
void set_text(String const& text) { string_replace_all(text); }
|
||||
|
||||
[[nodiscard]] bool async() const;
|
||||
void set_async(bool);
|
||||
|
||||
private:
|
||||
HTMLScriptElement(DOM::Document&, DOM::QualifiedName);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue