Changeset 55564
- Timestamp:
- 03/20/2023 08:23:47 AM (19 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/kses.php
r55309 r55564 2280 2280 * @since 6.2.0 Added support for `aspect-ratio`, `position`, `top`, `right`, `bottom`, `left`, 2281 2281 * and `z-index` CSS properties. 2282 * @since 6.3.0 Extended support for `filter` to accept a URL. 2282 2283 * 2283 2284 * @param string $css A string of CSS rules. … … 2467 2468 2468 2469 'cursor', 2470 'filter', 2469 2471 2470 2472 'list-style', -
trunk/tests/phpunit/tests/kses.php
r55563 r55564 1317 1317 'expected' => '', 1318 1318 ), 1319 // URL support for `filter` introduced in 6.3. 1320 array( 1321 'css' => 'filter: url( my-file.svg#svg-blur );', 1322 'expected' => 'filter: url( my-file.svg#svg-blur )', 1323 ), 1319 1324 ); 1320 1325 }
Note: See TracChangeset
for help on using the changeset viewer.