/** Test for Bug 936056 **/
SimpleTest.waitForExplicitFinish();
window.onload = function() { var desc = Object.getOwnPropertyDescriptor(frames[0], "document");
if (!desc || !desc.get) {
todo(false, "This test does nothing so far, but will once Window is on WebIDL bindings");
SimpleTest.finish();
return;
} var get = desc.get;
ok(get, "Couldn't find document getter"); Object.defineProperty(frames[0], "foo", { get, configurable: true });
var barewordFunc = frames[0].eval("(function (count) { var doc; for (var i = 0; i < count; ++i) doc = foo; return doc.documentElement; })"); var qualifiedFunc = frames[0].eval("(function (count) { var doc; for (var i = 0; i < count; ++i) doc = window.document; return doc.documentElement; })");
document.querySelector("iframe").onload = function() {
// interp
is(barewordFunc(1).innerText, "OLD", "Bareword should see own inner 1");
is(qualifiedFunc(1).innerText, "NEW", "Qualified should see current inner 1");
// baseline
is(barewordFunc(100).innerText, "OLD", "Bareword should see own inner 2");
is(qualifiedFunc(100).innerText, "NEW", "Qualified should see current inner 2");
// ion
is(barewordFunc(10000).innerText, "OLD", "Bareword should see own inner 3");
is(qualifiedFunc(10000).innerText, "NEW", "Qualified should see current inner 2");
SimpleTest.finish();
};
frames[0].location = "file_barewordGetsWindow_frame2.html";
};
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.