Make WordPress Core

Ticket #47367: 47367.diff

File 47367.diff, 1.3 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 b707dca813..6f953ee92f 100644
    a b function safecss_filter_attr( $css, $deprecated = '' ) { 
    20812081                        'background-color',
    20822082                        'background-image',
    20832083                        'background-position',
     2084                        'background-size',
     2085                        'background-attachment',
     2086                        'background-blend-mode',
    20842087
    20852088                        'border',
     2089                        'border-radius',
    20862090                        'border-width',
    20872091                        'border-color',
    20882092                        'border-style',
    function safecss_filter_attr( $css, $deprecated = '' ) { 
    21072111                        'border-collapse',
    21082112                        'caption-side',
    21092113
     2114                        'columns',
     2115                        'column-count',
     2116                        'column-gap',
     2117                        'column-span',
     2118
    21102119                        'color',
    21112120                        'font',
    21122121                        'font-family',
    function safecss_filter_attr( $css, $deprecated = '' ) { 
    21532162                        'overflow',
    21542163                        'vertical-align',
    21552164                        'list-style-type',
     2165
     2166                        'flex',
     2167                        'flex-direction',
     2168                        'flex-flow',
     2169                        'flex-grow',
     2170                        'justify-content',
     2171                        'justify-items',
     2172                        'justify-self',
     2173                        'align-content',
     2174                        'align-items',
     2175                        'align-self',
     2176
    21562177                        'grid-template-columns',
     2178                        'grid-template-rows',
     2179                        'grid-gap',
     2180                        'grid-column-gap',
     2181                        'grid-row-gap',
     2182                        'grid-column',
     2183                        'grid-row',
     2184                        'grid-column-start',
     2185                        'grid-column-end',
     2186                        'grid-column-start',
     2187                        'grid-row-start',
     2188
     2189                        'clip-path',
     2190                        'shape-outside',
    21572191                )
    21582192        );
    21592193