Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 4.1.x will end 13 November 2023 (12 months).
  • Bug fixes for security issues in 4.1.x will end 10 November 2025 (36 months).
  • PHP version: minimum PHP 7.4.0 Note: minimum PHP version has increased since Moodle 4.0. PHP 8.0.x is supported too.
   1  <?php
   2  
   3  namespace Sabberworm\CSS\Property;
   4  
   5  class KeyframeSelector extends Selector
   6  {
   7      /**
   8       * regexp for specificity calculations
   9       *
  10       * @var string
  11       */
  12      const SELECTOR_VALIDATION_RX = '/
  13      ^(
  14          (?:
  15              [a-zA-Z0-9\x{00A0}-\x{FFFF}_^$|*="\'~\[\]()\-\s\.:#+>]* # any sequence of valid unescaped characters
  16              (?:\\\\.)?                                              # a single escaped character
  17              (?:([\'"]).*?(?<!\\\\)\2)?                              # a quoted text like [id="example"]
  18          )*
  19      )|
  20      (\d+%)                                                          # keyframe animation progress percentage (e.g. 50%)
  21      $
  22      /ux';
  23  }