You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import org.jsoup.nodes.Element;
public class Test {
public static void main(String[] args) {
Element element = new Element("element");
// Create a long chain of elements
for (int i = 0; i < 5000; i++) {
Element elem2 = new Element("element" + i);
element.appendChild(elem2);
element = elem2;
}
// Crashes with StackOverflowError
System.out.println(element.cssSelector());;
}
}
The text was updated successfully, but these errors were encountered:
As per title!
Here is a program which reproduces the issue:
The text was updated successfully, but these errors were encountered: