- Timestamp:
- 01/09/2024 06:10:09 AM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/style-engine/class-wp-style-engine.php
r57253 r57254 24 24 * @since 6.3.0 Added support for text-columns. 25 25 * @since 6.4.0 Added support for background.backgroundImage. 26 * @since 6.5.0 Added support for background.backgroundPosition and background.backgroundRepeat. 26 27 */ 27 28 #[AllowDynamicProperties] … … 49 50 const BLOCK_STYLE_DEFINITIONS_METADATA = array( 50 51 'background' => array( 51 'backgroundImage' => array(52 'backgroundImage' => array( 52 53 'property_keys' => array( 53 54 'default' => 'background-image', … … 56 57 'path' => array( 'background', 'backgroundImage' ), 57 58 ), 58 'backgroundSize' => array( 59 'backgroundPosition' => array( 60 'property_keys' => array( 61 'default' => 'background-position', 62 ), 63 'path' => array( 'background', 'backgroundPosition' ), 64 ), 65 'backgroundRepeat' => array( 66 'property_keys' => array( 67 'default' => 'background-repeat', 68 ), 69 'path' => array( 'background', 'backgroundRepeat' ), 70 ), 71 'backgroundSize' => array( 59 72 'property_keys' => array( 60 73 'default' => 'background-size',
Note: See TracChangeset
for help on using the changeset viewer.