dom/tests/mochitest/bugs/test_bug440572.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dom/tests/mochitest/bugs/test_bug440572.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,47 @@
     1.4 +<!DOCTYPE HTML>
     1.5 +<html>
     1.6 +<!--
     1.7 +https://bugzilla.mozilla.org/show_bug.cgi?id=440572
     1.8 +-->
     1.9 +<head>
    1.10 +  <title>Test for Bug 440572</title>
    1.11 +  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>        
    1.12 +  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
    1.13 +</head>
    1.14 +<body onload="runtests()">
    1.15 +<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=440572">Mozilla Bug 440572</a>
    1.16 +
    1.17 +<script class="testbody" type="text/javascript">
    1.18 +
    1.19 +/** Test for Bug 440572 **/
    1.20 +
    1.21 +var messages = [];
    1.22 +
    1.23 +function receiveMessage(e)
    1.24 +{
    1.25 +  is(e.origin, "http://example.org", "wrong sender!");
    1.26 +  messages.push(e.data);
    1.27 +}
    1.28 +
    1.29 +window.addEventListener("message", receiveMessage, false);
    1.30 +
    1.31 +function runtests()
    1.32 +{
    1.33 +  for (i in messages) {
    1.34 +    is(messages[i], "success", "test in frame failed.");
    1.35 +  }
    1.36 +
    1.37 +  SimpleTest.finish();
    1.38 +}
    1.39 +
    1.40 +SimpleTest.waitForExplicitFinish();
    1.41 +</script>
    1.42 +<br>
    1.43 +<iframe name="test" src="http://example.org:80/tests/dom/tests/mochitest/bugs/iframe_bug440572.html"></iframe>
    1.44 +<br>
    1.45 +<iframe name="content" src="http://example.org:80/tests/dom/tests/mochitest/bugs/iframe_bug440572.html"></iframe>
    1.46 +<br>
    1.47 +<iframe name="dump" src="http://example.org:80/tests/dom/tests/mochitest/bugs/iframe_bug440572.html"></iframe>
    1.48 +</body>
    1.49 +</html>
    1.50 +

mercurial