async function verifyAfterLoad() { var e = document.getElementsByTagName('iframe')[0]; var win = e.contentWindow;
if (win.location.hash != '') {
// Allow a half pixel difference because the scroll position is aligned with
// screen pixels instead of CSS pixels (bug 1774315).
isfuzzy(win.scrollY, 500, 0.5);
SimpleTest.finish();
return;
}
}
function runTest() { var e = document.getElementsByTagName('iframe')[0]; var win = e.contentWindow;
if (win.location.hash != '') {
return;
}
win.location.hash='#anchor'
win.scrollTo(0,500);
e.setAttribute("onload","verifyAfterLoad()");
win.location.reload()
}
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.