/** Test for Bug 936129 **/
SimpleTest.waitForExplicitFinish();
function test1Done()
{
ok(true, "Bareword setTimeout should work after calling document.open().");
variframe = document.getElementById("testFrame"); iframe.onload = function () {
window.runTest2 = iframe.contentWindow.runTest2; iframe.onload = function () {
window.runTest2();
setTimeout(allDone);
}
// Per whatwg spec, "If the src attribute and the srcdoc attribute are
// both specified together, the srcdoc attribute takes priority."
//
// So if we were to use src attribute here, it will be considered as a
// no-op, so simply use a simple srcdoc here. iframe.srcdoc = "<html></html>";
} iframe.srcdoc = "<script>function runTest2() { setTimeout('parent.test2Done()'); };<" + "/script>";
}
window.test2DoneCalled = false;
function test2Done()
{
window.test2DoneCalled = true;
}
function allDone()
{
ok(!window.test2DoneCalled, "Bareword setTimeout should be a noop after the document for the window context that it's called on isn't active anymore.");
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.