mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 01:47:00 +02:00
12 lines
261 B
C++
12 lines
261 B
C++
#include <LibHTML/CSS/StyleSheet.h>
|
|
#include <LibHTML/Parser/CSSParser.h>
|
|
#include <ctype.h>
|
|
#include <stdio.h>
|
|
|
|
NonnullRefPtr<StyleSheet> parse_css(const String& css)
|
|
{
|
|
Vector<NonnullRefPtr<StyleRule>> rules;
|
|
|
|
return StyleSheet::create(move(rules));
|
|
}
|