- Timestamp:
- 01/20/2024 12:13:19 AM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-processor.php
r57317 r57319 1003 1003 switch ( $tag_name ) { 1004 1004 case 'APPLET': 1005 case 'AREA':1006 1005 case 'BASE': 1007 1006 case 'BASEFONT': … … 1011 1010 case 'COL': 1012 1011 case 'COLGROUP': 1013 case 'DD':1014 case 'DT':1015 1012 case 'FORM': 1016 1013 case 'FRAME': … … 1020 1017 case 'IFRAME': 1021 1018 case 'INPUT': 1022 case 'LI':1023 1019 case 'LINK': 1024 1020 case 'MARQUEE': … … 1030 1026 case 'NOSCRIPT': 1031 1027 case 'OBJECT': 1032 case 'OL':1033 1028 case 'OPTGROUP': 1034 1029 case 'OPTION': … … 1056 1051 case 'TR': 1057 1052 case 'TRACK': 1058 case 'UL':1059 1053 case 'XMP': 1060 1054 $this->last_error = self::ERROR_UNSUPPORTED; … … 1710 1704 'AREA' === $tag_name || 1711 1705 'BASE' === $tag_name || 1706 'BASEFONT' === $tag_name || // Obsolete but still treated as void. 1707 'BGSOUND' === $tag_name || // Obsolete but still treated as void. 1712 1708 'BR' === $tag_name || 1713 1709 'COL' === $tag_name || 1714 1710 'EMBED' === $tag_name || 1711 'FRAME' === $tag_name || 1715 1712 'HR' === $tag_name || 1716 1713 'IMG' === $tag_name || … … 1719 1716 'KEYGEN' === $tag_name || // Obsolete but still treated as void. 1720 1717 'META' === $tag_name || 1718 'PARAM' === $tag_name || // Obsolete but still treated as void. 1721 1719 'SOURCE' === $tag_name || 1722 1720 'TRACK' === $tag_name ||
Note: See TracChangeset
for help on using the changeset viewer.