mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:17:35 +00:00
LibWeb: Evaluate @media
rules
We now evaluate the conditions of `@media` rules at the same point in the HTML event loop as evaluation of `MediaQueryList`s. This is not strictly to spec, but since the spec doesn't actually say when to do this, it seems to make the most sense. In any case, it works! :^)
This commit is contained in:
parent
57a25139a5
commit
5098cd22a4
8 changed files with 47 additions and 2 deletions
|
@ -28,7 +28,8 @@ public:
|
|||
void add_sheet(NonnullRefPtr<CSSStyleSheet>);
|
||||
void remove_sheet(CSSStyleSheet&);
|
||||
|
||||
const NonnullRefPtrVector<CSSStyleSheet>& sheets() const { return m_sheets; }
|
||||
NonnullRefPtrVector<CSSStyleSheet> const& sheets() const { return m_sheets; }
|
||||
NonnullRefPtrVector<CSSStyleSheet>& sheets() { return m_sheets; }
|
||||
|
||||
RefPtr<CSSStyleSheet> item(size_t index) const
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue