function boom()
{
// Only this exact number of calls to bounce() triggers the bug,
// but changing the depth of the document changes the number of
// bounce() calls needed. For example, removing the 'p' tag
// makes it so one additional bounce() is needed.
function bounce()
{ var docElem = document.documentElement; var docElemChildren = [];
while (docElem.firstChild) {
docElemChildren.push(docElem.firstChild);
docElem.firstChild.remove();
}
for (var i = 0; i < docElemChildren.length; ++i)
docElem.appendChild(docElemChildren[i]);
}
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.