Changeset 59500
- Timestamp:
- 12/09/2024 12:42:42 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-processor.php
r59469 r59500 2319 2319 2320 2320 $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_AFTER_BODY; 2321 return true; 2321 /* 2322 * The BODY element is not removed from the stack of open elements. 2323 * Only internal state has changed, this does not qualify as a "step" 2324 * in terms of advancing through the document to another token. 2325 * Nothing has been pushed or popped. 2326 * Proceed to parse the next item. 2327 */ 2328 return $this->step(); 2322 2329 2323 2330 /* … … 4392 4399 4393 4400 $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_AFTER_AFTER_BODY; 4394 return true; 4401 /* 4402 * The HTML element is not removed from the stack of open elements. 4403 * Only internal state has changed, this does not qualify as a "step" 4404 * in terms of advancing through the document to another token. 4405 * Nothing has been pushed or popped. 4406 * Proceed to parse the next item. 4407 */ 4408 return $this->step(); 4395 4409 } 4396 4410 … … 4587 4601 case '-HTML': 4588 4602 $this->state->insertion_mode = WP_HTML_Processor_State::INSERTION_MODE_AFTER_AFTER_FRAMESET; 4589 return true; 4603 /* 4604 * The HTML element is not removed from the stack of open elements. 4605 * Only internal state has changed, this does not qualify as a "step" 4606 * in terms of advancing through the document to another token. 4607 * Nothing has been pushed or popped. 4608 * Proceed to parse the next item. 4609 */ 4610 return $this->step(); 4590 4611 4591 4612 /*
Note: See TracChangeset
for help on using the changeset viewer.