- Timestamp:
- 07/03/2024 05:05:46 PM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-processor-state.php
r58631 r58656 217 217 218 218 /** 219 * The stack of template insertion modes. 220 * 221 * @since 6.7.0 222 * 223 * @see https://html.spec.whatwg.org/#the-insertion-mode:stack-of-template-insertion-modes 224 * 225 * @var array<string> 226 */ 227 public $stack_of_template_insertion_modes = array(); 228 229 /** 219 230 * Tracks open elements while scanning HTML. 220 231 * … … 272 283 */ 273 284 public $context_node = null; 285 286 /** 287 * HEAD element pointer. 288 * 289 * @since 6.7.0 290 * 291 * @see https://html.spec.whatwg.org/multipage/parsing.html#head-element-pointer 292 * 293 * @var WP_HTML_Token|null 294 */ 295 public $head_element = null; 274 296 275 297 /**
Note: See TracChangeset
for help on using the changeset viewer.