зеркало из https://github.com/mozilla/pjs.git
Fixing bug 440572. Make child frames whose names conflict with properties defined in IDL be accessable through XOWs again. r+sr=mrbkap@gmail.com
This commit is contained in:
Родитель
1c71469980
Коммит
d032112a4a
|
@ -0,0 +1,17 @@
|
|||
<html>
|
||||
<body>
|
||||
<script>
|
||||
|
||||
var success = 0;
|
||||
|
||||
try {
|
||||
parent[name].success = 1;
|
||||
} catch (e) {
|
||||
parent.postMessage(e, "http://localhost:8888");
|
||||
}
|
||||
|
||||
parent.postMessage(success ? "success" : "failure", "http://localhost:8888");
|
||||
</script>
|
||||
<p>Move on, nothing to see here...</p>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,48 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=440572
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 440572</title>
|
||||
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
</head>
|
||||
<body onload="runtests()">
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=440572">Mozilla Bug 440572</a>
|
||||
|
||||
<script class="testbody" type="text/javascript">
|
||||
|
||||
/** Test for Bug 440572 **/
|
||||
|
||||
var messages = [];
|
||||
|
||||
function receiveMessage(e)
|
||||
{
|
||||
is(e.origin, "http://example.org", "wrong sender!");
|
||||
messages.push(e.data);
|
||||
}
|
||||
|
||||
window.addEventListener("message", receiveMessage, false);
|
||||
|
||||
function runtests()
|
||||
{
|
||||
for (i in messages) {
|
||||
is(messages[i], "success", "test in frame failed.");
|
||||
}
|
||||
|
||||
SimpleTest.finish();
|
||||
}
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
</script>
|
||||
<br>
|
||||
<iframe name="test" src="http://example.org:80/tests/dom/tests/mochitest/bugs/iframe_bug440572.html"></iframe>
|
||||
<br>
|
||||
<iframe name="content" src="http://example.org:80/tests/dom/tests/mochitest/bugs/iframe_bug440572.html"></iframe>
|
||||
<br>
|
||||
<iframe name="dump" src="http://example.org:80/tests/dom/tests/mochitest/bugs/iframe_bug440572.html"></iframe>
|
||||
</body>
|
||||
</html>
|
||||
|
Загрузка…
Ссылка в новой задаче