void
HTML_CSS::getAtRulesList
(
)
Return the list of At-Rules supported by API 1.5.0 of HTML_CSS
throws no exceptions thrown
since version 1.5.0 (2008-01-15)
This function can not be called statically.
<?php
require_once 'HTML/CSS.php';
$list = $css->getAtRulesList();
var_export($list);
// will output:
//
// array (
// 0 => '@charset',
// 1 => '@font-face',
// 2 => '@import',
// 3 => '@media',
// 4 => '@page',
// 5 => '@namespace',
// )
?>