<script>
// Silence SimpleTest warning about missing assertions by having it wait
// indefinitely. We don't need to give it an explicit finish because the
// entire window this test runs in will be closed after the main browser test
// finished.
SimpleTest.waitForExplicitFinish();
</script>
<script>
function toggle() {
let container = document.getElementById("container");
console.log(container.style.display);
if (container.style.position == "sticky") {
container.style.position = "fixed";
} else {
container.style.position = "sticky";
}
document.documentElement.offsetLeft;
}
async function doTest() {
setInterval(toggle, 40);
}
</script>
</body>
Messung V0.5
¤ Dauer der Verarbeitung: 0.12 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.