LibHTML: Add the outline of a CSS stylesheet object graph.

This commit is contained in:
Andreas Kling 2019-06-20 23:25:25 +02:00
parent 2e2b97dc8a
commit d99b1a9ea0
Notes: sideshowbarker 2024-07-19 13:32:39 +09:00
11 changed files with 123 additions and 0 deletions

15
LibHTML/CSS/StyleSheet.h Normal file
View file

@ -0,0 +1,15 @@
#pragma once
#include <AK/Vector.h>
#include <LibHTML/CSS/StyleRule.h>
class StyleSheet {
public:
StyleSheet();
~StyleSheet();
const Vector<StyleRule>& rules() const { return m_rules; }
private:
Vector<StyleRule> m_rules;
};