Skip to content

Commit 6d7a058

Browse files
committed
Use 'el' instead of 'node' in adoption agency
1 parent 0679bef commit 6d7a058

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

src/main/java/org/jsoup/parser/HtmlTreeBuilderState.java

+20-20
Original file line numberDiff line numberDiff line change
@@ -916,57 +916,57 @@ private boolean inBodyEndTagAdoption(Token t, HtmlTreeBuilder tb) {
916916
// JH - I think this means its index? Or do we need a linked list?
917917
int bookmark = tb.positionOfElement(formatEl);
918918

919-
Element node = furthestBlock; // 11. Let node and lastNode be furthestBlock.
920-
Element lastNode = furthestBlock;
919+
Element el = furthestBlock; // 11. Let node and lastNode be furthestBlock.
920+
Element lastEl = furthestBlock;
921921
int inner = 0; // 12. Let innerLoopCounter be 0.
922922

923923
while (true) { // 13. While true:
924924
inner++; // 1. Increment innerLoopCounter by 1.
925925
// 2. Let node be the element immediately above node in the [stack of open elements], or if node is no longer in the [stack of open elements] , the element that was immediately above node in the [stack of open elements] before node was removed.
926-
if (!tb.onStack(node)) {
926+
if (!tb.onStack(el)) {
927927
// if node was removed from stack, use the element that was above it
928-
node = node.parent(); // JH - is there a situation where it's not the parent?
928+
el = el.parent(); // JH - is there a situation where it's not the parent?
929929
} else {
930-
node = tb.aboveOnStack(node);
930+
el = tb.aboveOnStack(el);
931931
}
932-
if (node == null) {
932+
if (el == null) {
933933
tb.error(this); // shouldn't be able to hit
934934
break;
935935
}
936936
// 3. If node is formattingElement, then [break].
937-
if (node == formatEl) {
937+
if (el == formatEl) {
938938
break;
939939
}
940940

941941
// 4. If innerLoopCounter is greater than 3 and node is in the [list of active formatting elements], then remove node from the [list of active formatting elements].
942-
if (inner > 3 && tb.isInActiveFormattingElements(node)) {
943-
tb.removeFromActiveFormattingElements(node);
942+
if (inner > 3 && tb.isInActiveFormattingElements(el)) {
943+
tb.removeFromActiveFormattingElements(el);
944944
break;
945945
}
946946
// 5. If node is not in the [list of active formatting elements], then remove node from the [stack of open elements] and [continue].
947-
if (!tb.isInActiveFormattingElements(node)) {
948-
tb.removeFromStack(node);
947+
if (!tb.isInActiveFormattingElements(el)) {
948+
tb.removeFromStack(el);
949949
continue;
950950
}
951951

952952
// 6. [Create an element for the token] for which the element node was created, in the [HTML namespace], with commonAncestor as the intended parent; replace the entry for node in the [list of active formatting elements] with an entry for the new element, replace the entry for node in the [stack of open elements] with an entry for the new element, and let node be the new element.
953-
Element replacement = new Element(tb.tagFor(node.nodeName(), node.normalName(), tb.defaultNamespace(), ParseSettings.preserveCase), tb.getBaseUri());
954-
tb.replaceActiveFormattingElement(node, replacement);
955-
tb.replaceOnStack(node, replacement);
956-
node = replacement;
953+
Element replacement = new Element(tb.tagFor(el.nodeName(), el.normalName(), tb.defaultNamespace(), ParseSettings.preserveCase), tb.getBaseUri());
954+
tb.replaceActiveFormattingElement(el, replacement);
955+
tb.replaceOnStack(el, replacement);
956+
el = replacement;
957957

958958
// 7. If lastNode is furthestBlock, then move the aforementioned bookmark to be immediately after the new node in the [list of active formatting elements].
959-
if (lastNode == furthestBlock) {
960-
bookmark = tb.positionOfElement(node) + 1;
959+
if (lastEl == furthestBlock) {
960+
bookmark = tb.positionOfElement(el) + 1;
961961
}
962-
node.appendChild(lastNode); // 8. [Append] lastNode to node.
963-
lastNode = node; // 9. Set lastNode to node.
962+
el.appendChild(lastEl); // 8. [Append] lastNode to node.
963+
lastEl = el; // 9. Set lastNode to node.
964964
} // end inner loop # 13
965965

966966
// 14. Insert whatever lastNode ended up being in the previous step at the [appropriate place for inserting a node], but using commonAncestor as the _override target_.
967967
// todo - impl https://html.spec.whatwg.org/multipage/parsing.html#appropriate-place-for-inserting-a-node fostering
968968
// just use commonAncestor as target:
969-
commonAncestor.appendChild(lastNode);
969+
commonAncestor.appendChild(lastEl);
970970
// 15. [Create an element for the token] for which formattingElement was created, in the [HTML namespace], with furthestBlock as the intended parent.
971971
Element adoptor = new Element(formatEl.tag(), tb.getBaseUri());
972972
adoptor.attributes().addAll(formatEl.attributes()); // also attributes

0 commit comments

Comments
 (0)