- Timestamp:
- 01/19/2024 07:01:29 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-processor.php
r57264 r57314 110 110 * - Paragraph: P. 111 111 * - Phrasing elements: ABBR, BDI, BDO, CITE, DATA, DEL, DFN, INS, MARK, OUTPUT, Q, SAMP, SUB, SUP, TIME, VAR. 112 * - Sectioning elements: ARTICLE, ASIDE, NAV, SECTION.112 * - Sectioning elements: ARTICLE, ASIDE, HR, NAV, SECTION. 113 113 * - Templating elements: SLOT. 114 114 * - Text decoration: RUBY. … … 941 941 $this->reconstruct_active_formatting_elements(); 942 942 $this->insert_html_element( $this->state->current_token ); 943 return true; 944 945 /* 946 * > A start tag whose tag name is "hr" 947 */ 948 case '+HR': 949 if ( $this->state->stack_of_open_elements->has_p_in_button_scope() ) { 950 $this->close_a_p_element(); 951 } 952 $this->insert_html_element( $this->state->current_token ); 953 $this->state->frameset_ok = false; 943 954 return true; 944 955 } … … 978 989 case 'FRAMESET': 979 990 case 'HEAD': 980 case 'HR':981 991 case 'HTML': 982 992 case 'IFRAME':
Note: See TracChangeset
for help on using the changeset viewer.