@@ -118184,6 +118184,9 @@ function load_default_textdomain($locale = \null)
118184
118184
* @since 4.6.0 The function now tries to load the .mo file from the languages directory first.
118185
118185
* @since 6.7.0 Translations are no longer immediately loaded, but handed off to the just-in-time loading mechanism.
118186
118186
*
118187
+ * @global WP_Textdomain_Registry $wp_textdomain_registry WordPress Textdomain Registry.
118188
+ * @global array<string, WP_Translations|NOOP_Translations> $l10n An array of all currently loaded text domains.
118189
+ *
118187
118190
* @param string $domain Unique identifier for retrieving translated strings
118188
118191
* @param string|false $deprecated Optional. Deprecated. Use the $plugin_rel_path parameter instead.
118189
118192
* Default false.
@@ -118202,6 +118205,7 @@ function load_plugin_textdomain($domain, $deprecated = \false, $plugin_rel_path
118202
118205
* @since 6.7.0 Translations are no longer immediately loaded, but handed off to the just-in-time loading mechanism.
118203
118206
*
118204
118207
* @global WP_Textdomain_Registry $wp_textdomain_registry WordPress Textdomain Registry.
118208
+ * @global array<string, WP_Translations|NOOP_Translations> $l10n An array of all currently loaded text domains.
118205
118209
*
118206
118210
* @param string $domain Text domain. Unique identifier for retrieving translated strings.
118207
118211
* @param string $mu_plugin_rel_path Optional. Relative to `WPMU_PLUGIN_DIR` directory in which the .mo
@@ -118224,6 +118228,7 @@ function load_muplugin_textdomain($domain, $mu_plugin_rel_path = '')
118224
118228
* @since 6.7.0 Translations are no longer immediately loaded, but handed off to the just-in-time loading mechanism.
118225
118229
*
118226
118230
* @global WP_Textdomain_Registry $wp_textdomain_registry WordPress Textdomain Registry.
118231
+ * @global array<string, WP_Translations|NOOP_Translations> $l10n An array of all currently loaded text domains.
118227
118232
*
118228
118233
* @param string $domain Text domain. Unique identifier for retrieving translated strings.
118229
118234
* @param string|false $path Optional. Path to the directory containing the .mo file.
@@ -122100,6 +122105,20 @@ function wp_img_tag_add_auto_sizes(string $image) : string
122100
122105
function wp_sizes_attribute_includes_valid_auto(string $sizes_attr) : bool
122101
122106
{
122102
122107
}
122108
+ /**
122109
+ * Prints a CSS rule to fix potential visual issues with images using `sizes=auto`.
122110
+ *
122111
+ * This rule overrides the similar rule in the default user agent stylesheet, to avoid images that use e.g.
122112
+ * `width: auto` or `width: fit-content` to appear smaller.
122113
+ *
122114
+ * @since 6.7.1
122115
+ * @see https://html.spec.whatwg.org/multipage/rendering.html#img-contain-size
122116
+ * @see https://core.trac.wordpress.org/ticket/62413
122117
+ * @phpstan-return void
122118
+ */
122119
+ function wp_print_auto_sizes_contain_css_fix()
122120
+ {
122121
+ }
122103
122122
/**
122104
122123
* Adds optimization attributes to an `img` HTML tag.
122105
122124
*
0 commit comments