HTML API: Add missing NOBR end tag handling to HTML Processor.
When the HTML Processor was introduced, an oversight led to a missing case for handling a closing `NOBR` tag. The `NOBR` element is a deprecated tag and should not be used. This patch adds the missing case so that the deprecated `NOBR` end tag is appropriately handled. Developed in https://github.com/WordPress/wordpress-develop/pull/7282 Discussed in https://core.trac.wordpress.org/ticket/61576 Follow-up to [56274]. Props jonsurrell. See #61576. Built from https://develop.svn.wordpress.org/trunk@58967 git-svn-id: http://core.svn.wordpress.org/trunk@58363 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d7f9d30df8
commit
eac35f6ae6
|
@ -2415,6 +2415,7 @@ class WP_HTML_Processor extends WP_HTML_Tag_Processor {
|
||||||
case '-EM':
|
case '-EM':
|
||||||
case '-FONT':
|
case '-FONT':
|
||||||
case '-I':
|
case '-I':
|
||||||
|
case '-NOBR':
|
||||||
case '-S':
|
case '-S':
|
||||||
case '-SMALL':
|
case '-SMALL':
|
||||||
case '-STRIKE':
|
case '-STRIKE':
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.7-alpha-58966';
|
$wp_version = '6.7-alpha-58967';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
|
Loading…
Reference in New Issue