<!-- Case 1 --> <scriptlanguage="javascript"type="text/javascript"> var start_time = newDate().getTime(), container_tag = document.getElementById("container");
for(var i=0; i<50000; i++) { var p_tag = document.createElement("p"), p_text = document.createTextNode("This is a simple test case"); p_tag.appendChild(p_text); container_tag.appendChild(p_tag); }