2019-06-21 15:54:13 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
|
|
|
#include <LibHTML/CSS/StyleSheet.h>
|
|
|
|
|
|
2019-11-07 13:58:54 -03:00
|
|
|
RefPtr<StyleSheet> parse_css(const StringView&);
|
|
|
|
|
RefPtr<StyleDeclaration> parse_css_declaration(const StringView&);
|
2019-11-18 07:49:19 -03:00
|
|
|
NonnullRefPtr<StyleValue> parse_css_value(const StringView&);
|