Make WordPress Core

Ticket #29826: 29826.diff

File 29826.diff, 1.2 KB (added by wonderboymusic, 10 years ago)
  • src/wp-includes/kses.php

     
    8888                        'lang' => true,
    8989                        'xml:lang' => true,
    9090                ),
     91                'audio' => array(
     92                        'autoplay' => true,
     93                        'controls' => true,
     94                        'loop' => true,
     95                        'muted' => true,
     96                        'preload' => true,
     97                        'src' => true,
     98                ),
    9199                'b' => array(),
    92100                'big' => array(),
    93101                'blockquote' => array(
     
    119127                        'valign' => true,
    120128                        'width' => true,
    121129                ),
    122                 'colgroup' => array(
     130                'colgroup' => array(
    123131                        'align' => true,
    124132                        'char' => true,
    125133                        'charoff' => true,
     
    372380                        'charoff' => true,
    373381                        'valign' => true,
    374382                ),
     383                'track' => array(
     384                        'default' => true,
     385                        'kind' => true,
     386                        'label' => true,
     387                        'src' => true,
     388                        'srclang' => true,
     389                ),
    375390                'tt' => array(),
    376391                'u' => array(),
    377392                'ul' => array(
     
    382397                        'type' => true,
    383398                ),
    384399                'var' => array(),
     400                'video' => array(
     401                        'autoplay' => true,
     402                        'controls' => true,
     403                        'height' => true,
     404                        'loop' => true,
     405                        'muted' => true,
     406                        'poster' => true,
     407                        'preload' => true,
     408                        'src' => true,
     409                        'width' => true,
     410                ),
    385411        );
    386412
    387413        /**