Editor: disable default style engine optimisation.

Stops style engine from combining CSS selectors by default so that rule order is preserved.

Props ramonopoly, rajinsharwar, timdix, costdev, audrasjb, SergeyBiryukov, JeffPaul, mukesh27.
Fixes #58811.

Built from https://develop.svn.wordpress.org/trunk@56574


git-svn-id: http://core.svn.wordpress.org/trunk@56086 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
isabel_brison 2023-09-14 04:56:21 +00:00
parent 768f51f60c
commit 21ecbc3b0d
5 changed files with 8 additions and 7 deletions

View File

@ -3053,7 +3053,7 @@ function wp_enqueue_block_support_styles( $style, $priority = 10 ) {
* Default empty array. * Default empty array.
* *
* @type bool $optimize Whether to optimize the CSS output, e.g., combine rules. * @type bool $optimize Whether to optimize the CSS output, e.g., combine rules.
* Default true. * Default false.
* @type bool $prettify Whether to add new lines and indents to output. * @type bool $prettify Whether to add new lines and indents to output.
* Default to whether the `SCRIPT_DEBUG` constant is defined. * Default to whether the `SCRIPT_DEBUG` constant is defined.
* } * }

View File

@ -130,7 +130,7 @@ function wp_style_engine_get_styles( $block_styles, $options = array() ) {
* e.g. 'block-supports' or 'global-styles'. Default 'block-supports'. * e.g. 'block-supports' or 'global-styles'. Default 'block-supports'.
* When set, the style engine will attempt to store the CSS rules. * When set, the style engine will attempt to store the CSS rules.
* @type bool $optimize Whether to optimize the CSS output, e.g. combine rules. * @type bool $optimize Whether to optimize the CSS output, e.g. combine rules.
* Default true. * Default false.
* @type bool $prettify Whether to add new lines and indents to output. * @type bool $prettify Whether to add new lines and indents to output.
* Defaults to whether the `SCRIPT_DEBUG` constant is defined. * Defaults to whether the `SCRIPT_DEBUG` constant is defined.
* } * }
@ -178,7 +178,7 @@ function wp_style_engine_get_stylesheet_from_css_rules( $css_rules, $options = a
* Optional. An array of options. Default empty array. * Optional. An array of options. Default empty array.
* *
* @type bool $optimize Whether to optimize the CSS output, e.g. combine rules. * @type bool $optimize Whether to optimize the CSS output, e.g. combine rules.
* Default true. * Default false.
* @type bool $prettify Whether to add new lines and indents to output. * @type bool $prettify Whether to add new lines and indents to output.
* Defaults to whether the `SCRIPT_DEBUG` constant is defined. * Defaults to whether the `SCRIPT_DEBUG` constant is defined.
* } * }

View File

@ -85,12 +85,13 @@ class WP_Style_Engine_Processor {
* Gets the CSS rules as a string. * Gets the CSS rules as a string.
* *
* @since 6.1.0 * @since 6.1.0
* @since 6.4.0 The Optimization is no longer the default.
* *
* @param array $options { * @param array $options {
* Optional. An array of options. Default empty array. * Optional. An array of options. Default empty array.
* *
* @type bool $optimize Whether to optimize the CSS output, e.g. combine rules. * @type bool $optimize Whether to optimize the CSS output, e.g. combine rules.
* Default true. * Default false.
* @type bool $prettify Whether to add new lines and indents to output. * @type bool $prettify Whether to add new lines and indents to output.
* Defaults to whether the `SCRIPT_DEBUG` constant is defined. * Defaults to whether the `SCRIPT_DEBUG` constant is defined.
* } * }
@ -98,7 +99,7 @@ class WP_Style_Engine_Processor {
*/ */
public function get_css( $options = array() ) { public function get_css( $options = array() ) {
$defaults = array( $defaults = array(
'optimize' => true, 'optimize' => false,
'prettify' => defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG, 'prettify' => defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG,
); );
$options = wp_parse_args( $options, $defaults ); $options = wp_parse_args( $options, $defaults );

View File

@ -624,7 +624,7 @@ final class WP_Style_Engine {
* e.g. 'block-supports' or 'global-styles'. Default 'block-supports'. * e.g. 'block-supports' or 'global-styles'. Default 'block-supports'.
* When set, the style engine will attempt to store the CSS rules. * When set, the style engine will attempt to store the CSS rules.
* @type bool $optimize Whether to optimize the CSS output, e.g. combine rules. * @type bool $optimize Whether to optimize the CSS output, e.g. combine rules.
* Default true. * Default false.
* @type bool $prettify Whether to add new lines and indents to output. * @type bool $prettify Whether to add new lines and indents to output.
* Defaults to whether the `SCRIPT_DEBUG` constant is defined. * Defaults to whether the `SCRIPT_DEBUG` constant is defined.
* } * }

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.4-alpha-56573'; $wp_version = '6.4-alpha-56574';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.