* Parse at rule.
()
| 526 | */ |
| 527 | |
| 528 | function atrule() { |
| 529 | if (css[0] != '@') return; |
| 530 | |
| 531 | return atkeyframes() || atmedia() || atcustommedia() || atsupports() || atimport() || atcharset() || atnamespace() || atdocument() || atpage() || athost() || atfontface(); |
| 532 | } |
| 533 | |
| 534 | /** |
| 535 | * Parse rule. |
no test coverage detected