1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1019417
-->
<head>
<meta charset="utf-8">
<title>Test for Bug 1019417</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="application/javascript">
/** Test for Bug 1019417 */
SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {
var names1 = Object.getOwnPropertyNames(window);
var names2 = [];
var gsp = Object.getPrototypeOf(Window.prototype);
var names3 = Object.getOwnPropertyNames(gsp);
for (var i in window) {
names2.push(i);
}
// Per WebIDL spec, [[OwnPropertyKeys]] for the named properties object
// returns only @@toStringTag unless the legacy pref is enabled.
var legacyOwnPropertyKeys = SpecialPowers.getBoolPref(
"dom.window.named_properties_object.legacy_own_property_keys", false);
is(names1.indexOf(""), -1,
"Frame with no name or empty name should not be in our own prop list");
is(names2.indexOf(""), -1,
"Frame with no name or empty name should not be in our enumeration list");
is(names3.indexOf(""), -1,
"Frame with no name or empty name should not be in GSP own prop list");
is(names1.indexOf("x"), -1,
"Frame with about:blank loaded should not be in our own prop list");
is(names2.indexOf("x"), -1,
"Frame with about:blank loaded should not be in our enumeration list");
is(names3.indexOf("x") != -1, legacyOwnPropertyKeys,
"Frame with about:blank in GSP own prop list should match legacy pref");
is(names1.indexOf("y"), -1,
"Frame with same-origin loaded should not be in our own prop list");
is(names2.indexOf("y"), -1,
"Frame with same-origin loaded should not be in our enumeration list");
is(names3.indexOf("y") != -1, legacyOwnPropertyKeys,
"Frame with same-origin in GSP own prop list should match legacy pref");
is(names1.indexOf("z"), -1,
"Frame with cross-origin loaded should not be in our own prop list");
is(names2.indexOf("z"), -1,
"Frame with cross-origin loaded should not be in our enumeration list");
is(names3.indexOf("z") != -1, legacyOwnPropertyKeys,
"Frame with cross-origin in GSP own prop list should match legacy pref");
is(names1.indexOf("sameorigin"), -1,
"Frame with same-origin changed name should not be in our own prop list");
is(names2.indexOf("sameorigin"), -1,
"Frame with same-origin changed name should not be in our enumeration list");
is(names3.indexOf("sameorigin") != -1, legacyOwnPropertyKeys,
"Frame with same-origin changed name in GSP own prop list should match legacy pref");
is(names1.indexOf("crossorigin"), -1,
"Frame with cross-origin changed name should not be in our own prop list");
is(names2.indexOf("crossorigin"), -1,
"Frame with cross-origin changed name should not be in our enumeration list");
is(names3.indexOf("crossorigin"), -1,
"Frame with cross-origin changed name should not be in GSP own prop list");
is(Object.getOwnPropertyDescriptor(gsp, ""), undefined,
"Should not have empty string as a named frame");
isnot(Object.getOwnPropertyDescriptor(gsp, "x"), undefined,
"Should have about:blank subframe as a named frame");
isnot(Object.getOwnPropertyDescriptor(gsp, "y"), undefined,
"Should have same-origin subframe as a named frame");
isnot(Object.getOwnPropertyDescriptor(gsp, "z"), undefined,
"Should have cross-origin subframe as a named frame");
isnot(Object.getOwnPropertyDescriptor(gsp, "sameorigin"), undefined,
"Should have same-origin changed name as a named frame");
is(Object.getOwnPropertyDescriptor(gsp, "crossorigin"), undefined,
"Should not have cross-origin-origin changed name as a named frame");
SimpleTest.finish();
});
</script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1019417">Mozilla Bug 1019417</a>
<p id="display"></p>
<div id="content" style="display: none">
<iframe></iframe>
<iframe name=""></iframe>
<iframe name="x"></iframe>
<iframe name="y"
src="http://mochi.test:8888/tests/dom/base/test/file_empty.html"></iframe>
<iframe name="z"
src="http://example.com/tests/dom/base/test/file_empty.html"></iframe>
<iframe name="v"
src="http://mochi.test:8888/tests/dom/base/test/file_setname.html?sameorigin"></iframe>
<iframe name="w"
src="http://example.com/tests/dom/base/test/file_setname.html?crossorigin"></iframe>
</div>
<pre id="test">
</pre>
</body>
</html>
|