//xml parsing example
var xp = new DOMParser();
var test = "<a></a>";
for(var i=0;i<10000;i++) test += "<a></a>";
test = "<b>" + test + "</b>";
console.time("xml");
var xenon = xp.parseFromString(test, "application/xml");
console.timeEnd("xml");
//16