diff options
author | Andreas Kling <kling@serenityos.org> | 2020-07-28 18:20:36 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-07-28 18:55:48 +0200 |
commit | c46439f24063a5531f1f7562cf6d733cdbabdb51 (patch) | |
tree | 859ce620cbb59fd0d18700a524631dcbe6dd9eea /DevTools/HackStudio/Editor.cpp | |
parent | ebd2e7d9f569d284effeeb53a5589318391617b8 (diff) | |
download | serenity-c46439f24063a5531f1f7562cf6d733cdbabdb51.zip |
LibWeb: Move HTML classes into the Web::HTML namespace
Diffstat (limited to 'DevTools/HackStudio/Editor.cpp')
-rw-r--r-- | DevTools/HackStudio/Editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/DevTools/HackStudio/Editor.cpp b/DevTools/HackStudio/Editor.cpp index 18638564cb..c6b07ca749 100644 --- a/DevTools/HackStudio/Editor.cpp +++ b/DevTools/HackStudio/Editor.cpp @@ -175,7 +175,7 @@ void Editor::show_documentation_tooltip_if_available(const String& hovered_token m_documentation_page_view->load_html(html_text, {}); if (auto* document = m_documentation_page_view->document()) { - const_cast<Web::HTMLElement*>(document->body())->set_attribute(Web::HTML::AttributeNames::style, "background-color: #dac7b5;"); + const_cast<Web::HTML::HTMLElement*>(document->body())->set_attribute(Web::HTML::AttributeNames::style, "background-color: #dac7b5;"); } m_documentation_tooltip_window->move_to(screen_location.translated(4, 4)); |