Changeset 46235 for trunk/src/wp-includes/kses.php
- Timestamp:
- 09/22/2019 10:16:19 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/kses.php
r45997 r46235 2072 2072 * @since 5.1.0 Added support for `text-transform`. 2073 2073 * @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. 2075 2076 * 2076 2077 * @param string[] $attr Array of allowed CSS attributes. … … 2083 2084 'background-image', 2084 2085 'background-position', 2086 'background-size', 2087 'background-attachment', 2088 'background-blend-mode', 2085 2089 2086 2090 'border', 2091 'border-radius', 2087 2092 'border-width', 2088 2093 'border-color', … … 2109 2114 'caption-side', 2110 2115 2116 'columns', 2117 'column-count', 2118 'column-fill', 2119 'column-gap', 2120 'column-rule', 2121 'column-span', 2122 'column-width', 2123 2111 2124 'color', 2112 2125 'font', … … 2144 2157 2145 2158 'flex', 2159 'flex-basis', 2160 'flex-direction', 2161 'flex-flow', 2146 2162 'flex-grow', 2147 2163 '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', 2149 2183 2150 2184 'clear', … … 2155 2189 'vertical-align', 2156 2190 'list-style-type', 2157 'grid-template-columns',2158 2191 ) 2159 2192 );
Note: See TracChangeset
for help on using the changeset viewer.