diff options
Diffstat (limited to 'Libraries/LibWeb/HTML/HTMLLinkElement.cpp')
-rw-r--r-- | Libraries/LibWeb/HTML/HTMLLinkElement.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/HTML/HTMLLinkElement.cpp b/Libraries/LibWeb/HTML/HTMLLinkElement.cpp index adb9ce12ff..743b0ca1b5 100644 --- a/Libraries/LibWeb/HTML/HTMLLinkElement.cpp +++ b/Libraries/LibWeb/HTML/HTMLLinkElement.cpp @@ -79,7 +79,7 @@ void HTMLLinkElement::load_stylesheet(const URL& url) { // First insert an empty style sheet in the document sheet list. // There's probably a nicer way to do this, but this ensures that sheets are in document order. - m_style_sheet = StyleSheet::create({}); + m_style_sheet = CSS::StyleSheet::create({}); document().style_sheets().add_sheet(*m_style_sheet); LoadRequest request; |