diff --git a/lib/Sabberworm/CSS/RuleSet/AtRule.php b/lib/Sabberworm/CSS/CSSList/AtRule.php similarity index 85% rename from lib/Sabberworm/CSS/RuleSet/AtRule.php rename to lib/Sabberworm/CSS/CSSList/AtRule.php index 1287ebbc6..6133c91f9 100644 --- a/lib/Sabberworm/CSS/RuleSet/AtRule.php +++ b/lib/Sabberworm/CSS/CSSList/AtRule.php @@ -1,11 +1,11 @@ consumeUntil('{')); $this->consume('{'); $this->consumeWhiteSpace(); $oAtRule = new AtRule($sIdentifier); - $this->parseRuleSet($oAtRule); + $this->parseList($oAtRule); return $oAtRule; } }