2019-06-21 20:54:13 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
|
|
|
#include <LibHTML/CSS/StyleSheet.h>
|
|
|
|
|
|
2019-11-07 17:58:54 +01:00
|
|
|
RefPtr<StyleSheet> parse_css(const StringView&);
|
|
|
|
|
RefPtr<StyleDeclaration> parse_css_declaration(const StringView&);
|
2019-06-21 20:54:13 +02:00
|
|
|
|