Changeset 46794
- Timestamp:
- 11/28/2019 12:28:50 AM (5 years ago)
- Location:
- branches/5.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.3
-
branches/5.3/src/wp-includes/kses.php
r46235 r46794 2074 2074 * @since 5.3.0 Added support for `grid`, `flex` and `column` layout properties. 2075 2075 * Extend `background-*` support of individual properties. 2076 * @since 5.3.1 Added support for gradient backgrounds. 2076 2077 * 2077 2078 * @param string[] $attr Array of allowed CSS attributes. … … 2210 2211 ); 2211 2212 2213 /* 2214 * CSS attributes that accept gradient data types. 2215 * 2216 */ 2217 $css_gradient_data_types = array( 2218 'background', 2219 'background-image', 2220 ); 2221 2212 2222 if ( empty( $allowed_attr ) ) { 2213 2223 return $css; … … 2224 2234 $found = false; 2225 2235 $url_attr = false; 2236 $gradient_attr = false; 2226 2237 2227 2238 if ( strpos( $css_item, ':' ) === false ) { … … 2232 2243 2233 2244 if ( in_array( $css_selector, $allowed_attr, true ) ) { 2234 $found = true; 2235 $url_attr = in_array( $css_selector, $css_url_data_types, true ); 2245 $found = true; 2246 $url_attr = in_array( $css_selector, $css_url_data_types, true ); 2247 $gradient_attr = in_array( $css_selector, $css_gradient_data_types, true ); 2236 2248 } 2237 2249 } … … 2259 2271 $css_test_string = str_replace( $url_match, '', $css_test_string ); 2260 2272 } 2273 } 2274 } 2275 2276 if ( $found && $gradient_attr ) { 2277 $css_value = trim( $parts[1] ); 2278 if ( preg_match( '/^(repeating-)?(linear|radial|conic)-gradient\(([^()]|rgb[a]?\([^()]*\))*\)$/', $css_value ) ) { 2279 // Remove the whole `gradient` bit that was matched above from the CSS. 2280 $css_test_string = str_replace( $css_value, '', $css_test_string ); 2261 2281 } 2262 2282 } -
branches/5.3/tests/phpunit/tests/kses.php
r46235 r46794 753 753 * Testing the safecss_filter_attr() function. 754 754 * 755 * @ticket 37248 755 756 * @ticket 42729 757 * @ticket 48376 756 758 * @dataProvider data_test_safecss_filter_attr 757 759 * … … 879 881 'expected' => 'columns: 6rem auto;column-count: 4;column-fill: balance;column-gap: 9px;column-rule: thick inset blue;column-span: none;column-width: 120px', 880 882 ), 883 // Gradients introduced in 5.3. 884 array( 885 'css' => 'background: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)', 886 'expected' => 'background: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)', 887 ), 888 array( 889 'css' => 'background: linear-gradient(135deg,rgba(6,147,227,1) ) (0%,rgb(155,81,224) 100%)', 890 'expected' => '', 891 ), 892 array( 893 'css' => 'background-image: linear-gradient(red,yellow);', 894 'expected' => 'background-image: linear-gradient(red,yellow)', 895 ), 896 array( 897 'css' => 'color: linear-gradient(red,yellow);', 898 'expected' => '', 899 ), 900 array( 901 'css' => 'background-image: linear-gradient(red,yellow); background: prop( red,yellow); width: 100px;', 902 'expected' => 'background-image: linear-gradient(red,yellow);width: 100px', 903 ), 904 array( 905 'css' => 'background: unknown-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)', 906 'expected' => '', 907 ), 908 array( 909 'css' => 'background: repeating-linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)', 910 'expected' => 'background: repeating-linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)', 911 ), 912 array( 913 'css' => 'width: 100px; height: 100px; background: linear-gradient(135deg,rgba(0,208,132,1) 0%,rgba(6,147,227,1) 100%);', 914 'expected' => 'width: 100px;height: 100px;background: linear-gradient(135deg,rgba(0,208,132,1) 0%,rgba(6,147,227,1) 100%)', 915 ), 916 array( 917 'css' => 'background: radial-gradient(#ff0, red, yellow, green, rgba(6,147,227,1), rgb(155,81,224) 90%);', 918 'expected' => 'background: radial-gradient(#ff0, red, yellow, green, rgba(6,147,227,1), rgb(155,81,224) 90%)', 919 ), 920 array( 921 'css' => 'background: radial-gradient(#ff0, red, yellow, green, rgba(6,147,227,1), rgb(155,81,224) 90%);', 922 'expected' => 'background: radial-gradient(#ff0, red, yellow, green, rgba(6,147,227,1), rgb(155,81,224) 90%)', 923 ), 924 array( 925 'css' => 'background: conic-gradient(at 0% 30%, red 10%, yellow 30%, #1e90ff 50%)', 926 'expected' => 'background: conic-gradient(at 0% 30%, red 10%, yellow 30%, #1e90ff 50%)', 927 ), 928 881 929 ); 882 930 }
Note: See TracChangeset
for help on using the changeset viewer.