forked from WordPress/wordpress-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass-wp-html-element-stack.php
More file actions
306 lines (279 loc) · 8.08 KB
/
class-wp-html-element-stack.php
File metadata and controls
306 lines (279 loc) · 8.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<?php
class WP_HTML_Element_Stack {
/**
* Stack holding HTML tokens, tag openers, tag closers, or plain bookmarks.
*
* @var WP_HTML_Element_Stack_Item[]
*/
public $stack = array();
/**
* Returns a copy of the nth element on the stack for inspection.
*
* The top element is the oldest element on the stack. The 0th
* element will therefore always be the last element added, the
* 1st element will be the next-to-last element added, etc...
*
* @param int $nth_from_bottom Which item on the stack to return.
* @return WP_HTML_Element_Stack_Item|null
*/
public function peek( $nth_from_bottom ) {
if ( $nth_from_bottom < 0 || $nth_from_bottom >= $this->count() ) {
return null;
}
return $this->stack[ $this->count() - $nth_from_bottom - 1 ];
}
/**
* Add an item to the top of the stack.
*
* @TODO: Do we need to insertion-sort these?
*
* @param WP_HTML_Element_Stack_Item $stack_item
* @return void
*/
public function push( $stack_item ) {
$this->stack[] = $stack_item;
}
/**
* Removes an item of a given value from the stack.
*
* @TODO: Should this be done by index? What performance
* tradeoffs are we making here by isolating the
* index from the callee? It's safer, but is it
* worth the cost?
*
* @TODO: Measure performance against `remove_at( $nth_from_bottom )`.
*
* @param string $stack_item Which item to remove.
* @return bool Whether the item was removed.
*/
public function remove( $stack_item ) {
for ( $i = $this->count() - 1; $i >= 0; $i++ ) {
if ( $this->stack[ $i ] === $stack_item ) {
array_splice( $this->stack, $i, 1 );
return true;
}
}
return false;
}
public function count() {
return count( $this->stack );
}
/**
* Returns the bottom-most node on the stack.
*
* @return WP_HTML_Element_Stack_Item|null
*/
public function current_node() {
$count = $this->count();
return $count > 0
? $this->stack[ $count - 1 ]
: null;
}
/**
* Returns whether the given element is on the stack.
*
* @param string $element the ::class name of the element to check for.
* @return boolean whether the given element is on the stack.
*/
public function has_element( $element ) {
for ( $i = 0; $i < $this->count(); $i++ ) {
if ( $this->peek( $i )->element === $element ) {
return true;
}
}
return false;
}
/**
* Returns whether an element is in a specific scope.
*
* @see https://html.spec.whatwg.org/#has-an-element-in-the-specific-scope
*
* @param string $target_node The target node.
* @param string[] $termination_list List of elements that terminate the search.
* @return bool
*/
public function has_element_in_specific_scope( $target_node, $termination_list ) {
$i = $this->count();
if ( $i === 0 ) {
return false;
}
$node = $this->stack[ --$i ];
if ( $node->element === $target_node ) {
return true;
}
if ( in_array( $target_node, $termination_list, true ) ) {
return false;
}
while ( $i > 0 && null !== ( $node = $this->stack[ --$i ] ) ) {
if ( $node->element === $target_node ) {
return true;
}
if ( in_array( $target_node, $termination_list, true ) ) {
return false;
}
}
return false;
}
/**
* Returns whether a given element is in a particular scope.
*
* @see https://html.spec.whatwg.org/#has-an-element-in-scope
*
* @param string $element
* @return bool
*/
public function has_element_in_particular_scope( $element ) {
return $this->has_element_in_specific_scope( $element, array(
WP_HTMLAppletElement::class,
WP_HTMLCaptionElement::class,
WP_HTMLHtmlElement::class,
WP_HTMLTableElement::class,
WP_HTMLTdElement::class,
WP_HTMLThElement::class,
WP_HTMLMarqueeElement::class,
WP_HTMLObjectElement::class,
WP_HTMLTemplateElement::class,
WP_MathML_Mi_Element::class,
WP_MathML_Mo_Element::class,
WP_MathML_Mn_Element::class,
WP_MathML_Ms_Element::class,
WP_MathML_Mtext_Element::class,
WP_MathML_Annotation_Xml_Element::class,
WP_SVG_ForeignObject_Element::class,
WP_SVG_Description_Element::class,
WP_SVG_Title_Element::class,
) );
}
/**
* Returns whether a given element is in list item scope.
*
* @see https://html.spec.whatwg.org/#has-an-element-in-list-item-scope
*
* @param $element
* @return void
*/
public function has_element_in_list_item_scope( $element ) {
return $this->has_element_in_specific_scope( $element, array(
WP_HTMLAppletElement::class,
WP_HTMLCaptionElement::class,
WP_HTMLHtmlElement::class,
WP_HTMLTableElement::class,
WP_HTMLTdElement::class,
WP_HTMLThElement::class,
WP_HTMLMarqueeElement::class,
WP_HTMLObjectElement::class,
WP_HTMLTemplateElement::class,
WP_MathML_Mi_Element::class,
WP_MathML_Mo_Element::class,
WP_MathML_Mn_Element::class,
WP_MathML_Ms_Element::class,
WP_MathML_Mtext_Element::class,
WP_MathML_Annotation_Xml_Element::class,
WP_SVG_ForeignObject_Element::class,
WP_SVG_Description_Element::class,
WP_SVG_Title_Element::class,
// Additionally these elements.
WP_HTMLOlElement::class,
WP_HTMLUlElement::class,
) );
}
/**
* Returns whether a given element is in button scope.
*
* @see https://html.spec.whatwg.org/#has-an-element-in-button-scope
*
* @param string $element
* @return boolean
*/
public function has_element_in_button_scope( $element ) {
return $this->has_element_in_specific_scope( $element, array(
WP_HTMLAppletElement::class,
WP_HTMLCaptionElement::class,
WP_HTMLHtmlElement::class,
WP_HTMLTableElement::class,
WP_HTMLTdElement::class,
WP_HTMLThElement::class,
WP_HTMLMarqueeElement::class,
WP_HTMLObjectElement::class,
WP_HTMLTemplateElement::class,
WP_MathML_Mi_Element::class,
WP_MathML_Mo_Element::class,
WP_MathML_Mn_Element::class,
WP_MathML_Ms_Element::class,
WP_MathML_Mtext_Element::class,
WP_MathML_Annotation_Xml_Element::class,
WP_SVG_ForeignObject_Element::class,
WP_SVG_Description_Element::class,
WP_SVG_Title_Element::class,
// Additionally these elements.
WP_HTMLButtonElement::class,
) );
}
/**
* Returns whether the given element is in table scope.
*
* @see https://html.spec.whatwg.org/#has-an-element-in-table-scope
*
* @param string $element
* @return bool
*/
public function has_element_in_table_scope( $element ) {
return $this->has_element_in_specific_scope( $element, array(
WP_HTMLAppletElement::class,
WP_HTMLCaptionElement::class,
WP_HTMLHtmlElement::class,
WP_HTMLTableElement::class,
WP_HTMLTdElement::class,
WP_HTMLThElement::class,
WP_HTMLMarqueeElement::class,
WP_HTMLObjectElement::class,
WP_HTMLTemplateElement::class,
WP_MathML_Mi_Element::class,
WP_MathML_Mo_Element::class,
WP_MathML_Mn_Element::class,
WP_MathML_Ms_Element::class,
WP_MathML_Mtext_Element::class,
WP_MathML_Annotation_Xml_Element::class,
WP_SVG_ForeignObject_Element::class,
WP_SVG_Description_Element::class,
WP_SVG_Title_Element::class,
// Additionally these elements.
WP_HTMLHtmlElement::class,
WP_HTMLTableElement::class,
WP_HTMLTemplateElement::class,
) );
}
/**
* Returns whether a given element is in select scope.
*
* @see https://html.spec.whatwg.org/#has-an-element-in-select-scope
*
* @param string $element
* @return bool
*/
public function has_element_in_select_scope( $element ) {
return $this->has_element_in_specific_scope( $element, array(
WP_HTMLAppletElement::class,
WP_HTMLCaptionElement::class,
WP_HTMLHtmlElement::class,
WP_HTMLTableElement::class,
WP_HTMLTdElement::class,
WP_HTMLThElement::class,
WP_HTMLMarqueeElement::class,
WP_HTMLObjectElement::class,
WP_HTMLTemplateElement::class,
WP_MathML_Mi_Element::class,
WP_MathML_Mo_Element::class,
WP_MathML_Mn_Element::class,
WP_MathML_Ms_Element::class,
WP_MathML_Mtext_Element::class,
WP_MathML_Annotation_Xml_Element::class,
WP_SVG_ForeignObject_Element::class,
WP_SVG_Description_Element::class,
WP_SVG_Title_Element::class,
// Additionally these elements.
WP_HTMLOptgroupElement::class,
WP_HTMLOptionElement::class,
) );
}
}