<script>
function boom()
{
document.body.offsetHeight;
vartable = document.getElementById("table"); var cap = document.getElementById("cap");
var newtbody = document.createElement("tbody"); var newrow = document.createElement("tr"); var newcell = document.createElement("td");
newcell.appendChild(document.createTextNode("a new row 1"));
newrow.appendChild(newcell);
newtbody.appendChild(newrow); table.insertBefore(newtbody, cap);
varcaption = document.createElement("caption"); caption.appendChild(document.createTextNode("this is the caption")); table.insertBefore(caption, cap);
</head>
<body onload="boom();">
<table id="table">
<caption id="cap">this is a caption that you shouldn't see
<tbody><tr><td>a row</td></tr></tbody>
</table>
</body>
</html>
Messung V0.5
¤ Dauer der Verarbeitung: 0.11 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.