diff --git a/wp-includes/html-api/class-wp-html-processor.php b/wp-includes/html-api/class-wp-html-processor.php
index 6a2c7d6fbe..567b65062c 100644
--- a/wp-includes/html-api/class-wp-html-processor.php
+++ b/wp-includes/html-api/class-wp-html-processor.php
@@ -821,7 +821,7 @@ class WP_HTML_Processor extends WP_HTML_Tag_Processor {
// Doctype declarations.
'html' === $token_name ||
// Void elements.
- self::is_void( $token_name ) ||
+ ( 'html' === $token_namespace && self::is_void( $token_name ) ) ||
// Special atomic elements.
( 'html' === $token_namespace && in_array( $token_name, array( 'IFRAME', 'NOEMBED', 'NOFRAMES', 'SCRIPT', 'STYLE', 'TEXTAREA', 'TITLE', 'XMP' ), true ) ) ||
// Self-closing elements in foreign content.
diff --git a/wp-includes/version.php b/wp-includes/version.php
index a75dfbf805..37a70d92aa 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
-$wp_version = '6.8-alpha-59391';
+$wp_version = '6.8-alpha-59392';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.