Changeset 57319
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 || -
trunk/tests/phpunit/tests/html-api/wpHtmlProcessorBreadcrumbs.php
r57317 r57319 41 41 'ACRONYM', // Neutralized. 42 42 'ADDRESS', 43 'AREA', 43 44 'ARTICLE', 44 45 'ASIDE', … … 49 50 'BIG', 50 51 'BLINK', // Deprecated. 52 'BR', 51 53 'BUTTON', 52 54 'CANVAS', … … 66 68 'DT', 67 69 'EM', 70 'EMBED', 68 71 'FIELDSET', 69 72 'FIGCAPTION', … … 79 82 'HEADER', 80 83 'HGROUP', 84 'HR', 81 85 'I', 82 86 'IMG', 83 87 'INS', 84 88 'LI', 85 'ISINDEX', // Deprecated 89 'ISINDEX', // Deprecated. 86 90 'KBD', 91 'KEYGEN', // Deprecated. 87 92 'LABEL', 88 93 'LEGEND', 94 'LISTING', // Deprecated. 89 95 'MAIN', 90 96 'MAP', … … 92 98 'MENU', 93 99 'METER', 94 'MULTICOL', // Deprecated 100 'MULTICOL', // Deprecated. 95 101 'NAV', 96 'NEXTID', // Deprecated 102 'NEXTID', // Deprecated. 97 103 'OL', 98 104 'OUTPUT', … … 107 113 'SLOT', 108 114 'SMALL', 109 'SPACER', // Deprecated 115 'SPACER', // Deprecated. 110 116 'SPAN', 111 117 'STRIKE',
Note: See TracChangeset
for help on using the changeset viewer.