()
| 13390 | } |
| 13391 | |
| 13392 | get all() { |
| 13393 | const nodeList = new NodeList(); |
| 13394 | let { [NEXT]: next, [END]: end } = this; |
| 13395 | while (next !== end) { |
| 13396 | switch (next.nodeType) { |
| 13397 | case ELEMENT_NODE: |
| 13398 | nodeList.push(next); |
| 13399 | break; |
| 13400 | } |
| 13401 | next = next[NEXT]; |
| 13402 | } |
| 13403 | return nodeList; |
| 13404 | } |
| 13405 | |
| 13406 | /** |
| 13407 | * @type HTMLHeadElement |