|
Server : LiteSpeed System : Linux host 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : idnco5810 ( 1093) PHP Version : 8.2.29 Disable Function : NONE Directory : /home/idn98.co/public_html/wp-content/plugins/amp/vendor/ampproject/amp-toolbox/src/Html/ |
Upload File : |
<?php
namespace AmpProject\Html;
/**
* Interface with constants for the different "at" rules.
*
* @package ampproject/amp-toolbox
*/
interface AtRule
{
const _MOZ_DOCUMENT = '-moz-document';
const CHARSET = 'charset';
const COUNTER_STYLE = 'counter-style';
const DOCUMENT = 'document';
const FONT_FACE = 'font-face';
const FONT_FEATURE_VALUES = 'font-feature-values';
const IMPORT = 'import';
const KEYFRAMES = 'keyframes';
const MEDIA = 'media';
const NAMESPACE_ = 'namespace';
const PAGE = 'page';
const PROPERTY = 'property';
const SUPPORTS = 'supports';
const VIEWPORT = 'viewport';
}