Make WordPress Core

Ticket #47367: 47367.2.diff

File 47367.2.diff, 3.8 KB (added by peterwilsoncc, 5 years ago)
  • src/wp-includes/kses.php

    diff --git a/src/wp-includes/kses.php b/src/wp-includes/kses.php
    index 7975949370..07edc91ea9 100644
    a b function safecss_filter_attr( $css, $deprecated = '' ) { 
    20712071         * @since 5.0.0 Added support for `background-image`.
    20722072         * @since 5.1.0 Added support for `text-transform`.
    20732073         * @since 5.2.0 Added support for `background-position` and `grid-template-columns`
    2074          * @since 5.3.0 Added support for `flex`, `flex-grow`, `flex-shrink`, and `flex-basis`.
     2074         * @since 5.3.0 Added support for `grid`, `flex` and `column` layout properties.
     2075         *              Extend `background-*` support of individual properties.
    20752076         *
    20762077         * @param string[] $attr Array of allowed CSS attributes.
    20772078         */
    function safecss_filter_attr( $css, $deprecated = '' ) { 
    20822083                        'background-color',
    20832084                        'background-image',
    20842085                        'background-position',
     2086                        'background-size',
     2087                        'background-attachment',
     2088                        'background-blend-mode',
    20852089
    20862090                        'border',
     2091                        'border-radius',
    20872092                        'border-width',
    20882093                        'border-color',
    20892094                        'border-style',
    function safecss_filter_attr( $css, $deprecated = '' ) { 
    21082113                        'border-collapse',
    21092114                        'caption-side',
    21102115
     2116                        'columns',
     2117                        'column-count',
     2118                        'column-fill',
     2119                        'column-gap',
     2120                        'column-rule',
     2121                        'column-span',
     2122                        'column-width',
     2123
    21112124                        'color',
    21122125                        'font',
    21132126                        'font-family',
    function safecss_filter_attr( $css, $deprecated = '' ) { 
    21432156                        'padding-top',
    21442157
    21452158                        'flex',
     2159                        'flex-basis',
     2160                        'flex-direction',
     2161                        'flex-flow',
    21462162                        'flex-grow',
    21472163                        'flex-shrink',
    2148                         'flex-basis',
     2164
     2165                        'grid-template-columns',
     2166                        'grid-auto-columns',
     2167                        'grid-column-start',
     2168                        'grid-column-end',
     2169                        'grid-column-gap',
     2170                        'grid-template-rows',
     2171                        'grid-auto-rows',
     2172                        'grid-row-start',
     2173                        'grid-row-end',
     2174                        'grid-row-gap',
     2175                        'grid-gap',
     2176
     2177                        'justify-content',
     2178                        'justify-items',
     2179                        'justify-self',
     2180                        'align-content',
     2181                        'align-items',
     2182                        'align-self',
    21492183
    21502184                        'clear',
    21512185                        'cursor',
    function safecss_filter_attr( $css, $deprecated = '' ) { 
    21542188                        'overflow',
    21552189                        'vertical-align',
    21562190                        'list-style-type',
    2157                         'grid-template-columns',
    21582191                )
    21592192        );
    21602193
  • tests/phpunit/tests/kses.php

    diff --git a/tests/phpunit/tests/kses.php b/tests/phpunit/tests/kses.php
    index 039d5400b2..a42d1ff0bb 100644
    a b EOF; 
    841841                        ),
    842842                        // `flex` and related attributes introduced in 5.3.
    843843                        array(
    844                                 'css'      => 'flex: 0 1 auto;flex-basis: 75%;flex-shrink: 0;flex-grow: 1',
    845                                 'expected' => 'flex: 0 1 auto;flex-basis: 75%;flex-shrink: 0;flex-grow: 1',
     844                                'css'      => 'flex: 0 1 auto;flex-basis: 75%;flex-shrink: 0;flex-grow: 1;align-items: stretch',
     845                                'expected' => 'flex: 0 1 auto;flex-basis: 75%;flex-shrink: 0;flex-grow: 1;align-items: stretch',
     846                        ),
     847                        // `grid` and related attributes introduced in 5.3.
     848                        array(
     849                                'css'      => 'grid-row-start: -3;grid-column-end: span 3',
     850                                'expected' => 'grid-row-start: -3;grid-column-end: span 3',
     851                        ),
     852                        array(
     853                                'css'      => 'grid-template-columns: 60px 60px;grid-auto-rows: 100px',
     854                                'expected' => 'grid-template-columns: 60px 60px;grid-auto-rows: 100px',
     855                        ),
     856                        // `flex` and `grid` alignments introduced in 5.3.
     857                        array(
     858                                'css'      => 'align-content: space-between;align-items: start;justify-items: center;justify-content: space-between;justify-self: end',
     859                                'expected' => 'align-content: space-between;align-items: start;justify-items: center;justify-content: space-between;justify-self: end',
     860                        ),
     861                        // `columns` and related attributes introduced in 5.3
     862                        array(
     863                                'css'      => 'columns: 3 auto;column-rule: solid 6px;column-width: 120px;column-gap: 2rem;column-span: none;column-count: 3',
     864                                'expected' => 'columns: 3 auto;column-rule: solid 6px;column-width: 120px;column-gap: 2rem;column-span: none;column-count: 3',
    846865                        ),
    847866                );
    848867        }