Changeset 61678
- Timestamp:
- 02/18/2026 08:10:59 PM (2 weeks ago)
- Location:
- trunk
- Files:
-
- 3 added
- 4 edited
-
src/wp-includes/block-editor.php (modified) (1 diff)
-
src/wp-includes/block-supports/custom-css.php (added)
-
src/wp-includes/class-wp-theme-json.php (modified) (2 diffs)
-
src/wp-settings.php (modified) (1 diff)
-
tests/phpunit/tests/block-supports/wpRenderCustomCssClassName.php (added)
-
tests/phpunit/tests/block-supports/wpRenderCustomCssSupportStyles.php (added)
-
tests/phpunit/tests/blocks/editor.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/block-editor.php
r61473 r61678 658 658 $editor_settings = apply_filters_deprecated( 'block_editor_settings', array( $editor_settings, $post ), '5.8.0', 'block_editor_settings_all' ); 659 659 } 660 661 660 662 661 663 return $editor_settings; -
trunk/src/wp-includes/class-wp-theme-json.php
r61640 r61678 1521 1521 * @since 6.2.0 1522 1522 * @since 6.6.0 Enforced 0-1-0 specificity for block custom CSS selectors. 1523 1523 1524 * 1524 1525 * @param string $css The CSS to process. … … 1526 1527 * @return string The processed CSS. 1527 1528 */ 1528 p rotectedfunction process_blocks_custom_css( $css, $selector ) {1529 p function process_blocks_custom_css( $css, $selector ) { 1529 1530 $processed_css = ''; 1530 1531 -
trunk/src/wp-settings.php
r61674 r61678 416 416 require ABSPATH . WPINC . '/block-supports/anchor.php'; 417 417 require ABSPATH . WPINC . '/block-supports/block-visibility.php'; 418 418 419 require ABSPATH . WPINC . '/style-engine.php'; 419 420 require ABSPATH . WPINC . '/style-engine/class-wp-style-engine.php'; -
trunk/tests/phpunit/tests/blocks/editor.php
r60930 r61678 584 584 $this->assertSameSets( 585 585 array( 586 'filter' => 'deprecated', 586 'canEditCSS' => false, 587 'filter' => 'deprecated', 587 588 ), 588 589 $settings
Note: See TracChangeset
for help on using the changeset viewer.