Is there a difference between the following two xpath expressions?
child::*child::node()
I tried both expressions on this playground page and got the same result.
W3schools says
child::*Selects all element children of the current node
child::node()Selects all children of the current node
but I do not get the difference.