Closed
Description
val xmlLs = scala.xml.XML.loadString( "<a>ceci & un msg</a>" )
Gives me an element with only one child of type scala.xml.Text.
Where as
val xmlCode = <a>ceci & un msg</a>
Gives me an element with 3 children. The second is an scala.xml.EntityRef :
xmlCode.child(1).getClass
Then of course i have
xmlLs != xmlCode