diff --git a/wp-includes/kses.php b/wp-includes/kses.php index 18f183cf3d..dfb1f415d7 100644 --- a/wp-includes/kses.php +++ b/wp-includes/kses.php @@ -109,10 +109,13 @@ if ( ! CUSTOM_TAGS ) { ), 'br' => array(), 'button' => array( - 'disabled' => true, - 'name' => true, - 'type' => true, - 'value' => true, + 'disabled' => true, + 'name' => true, + 'type' => true, + 'value' => true, + 'popovertarget' => true, + 'popovertargetaction' => true, + 'aria-haspopup' => true, ), 'caption' => array( 'align' => true, @@ -145,7 +148,13 @@ if ( ! CUSTOM_TAGS ) { 'open' => true, ), 'div' => array( - 'align' => true, + 'align' => true, + 'popover' => true, + ), + 'dialog' => array( + 'closedby' => true, + 'open' => true, + 'popover' => true, ), 'dl' => array(), 'dt' => array(), @@ -362,7 +371,9 @@ if ( ! CUSTOM_TAGS ) { 'tt' => array(), 'u' => array(), 'ul' => array( - 'type' => true, + 'type' => true, + 'popover' => true, + 'role' => true, ), 'ol' => array( 'start' => true, diff --git a/wp-includes/version.php b/wp-includes/version.php index 8492f8a911..ee9b521e36 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.9-alpha-60816'; +$wp_version = '6.9-alpha-60884'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.