Commit | Line | Data |
---|---|---|
fbe18cc0 FM |
1 | <?php |
2 | ||
3 | namespace Sabberworm\CSS\Property; | |
4 | ||
5 | use Sabberworm\CSS\Renderable; | |
6 | use Sabberworm\CSS\Comment\Commentable; | |
7 | ||
8 | interface AtRule extends Renderable, Commentable { | |
fbe18cc0 | 9 | // Since there are more set rules than block rules, we’re whitelisting the block rules and have anything else be treated as a set rule. |
376eb156 MM |
10 | const BLOCK_RULES = 'media/document/supports/region-style/font-feature-values'; |
11 | // …and more font-specific ones (to be used inside font-feature-values) | |
12 | const SET_RULES = 'font-face/counter-style/page/swash/styleset/annotation'; | |
fbe18cc0 FM |
13 | |
14 | public function atRuleName(); | |
15 | public function atRuleArgs(); | |
16 | } |