mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
9 lines
204 B
C
9 lines
204 B
C
#pragma once
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <LibHTML/CSS/StyleSheet.h>
|
|
|
|
NonnullRefPtr<StyleSheet> parse_css(const String&);
|
|
NonnullRefPtr<StyleDeclaration> parse_css_declaration(const String&);
|
|
|