dom/tests/mochitest/bugs/test_bug809290.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dom/tests/mochitest/bugs/test_bug809290.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,54 @@
     1.4 +<!DOCTYPE HTML>
     1.5 +<html>
     1.6 +<!--
     1.7 +https://bugzilla.mozilla.org/show_bug.cgi?id=809290
     1.8 +-->
     1.9 +<head>
    1.10 +  <meta charset="utf-8">
    1.11 +  <title>Test for Bug 809290</title>
    1.12 +  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
    1.13 +  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
    1.14 +</head>
    1.15 +<body>
    1.16 +<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=809290">Mozilla Bug 809290</a>
    1.17 +<p id="display"></p>
    1.18 +<div id="content" style="display: none">
    1.19 +  
    1.20 +</div>
    1.21 +<pre id="test">
    1.22 +<script type="application/javascript">
    1.23 +
    1.24 +/*
    1.25 + * Test for Bug 809290.
    1.26 + *
    1.27 + * This test used to check that the referrer was the entry settings object.
    1.28 + * Due to spec changes, we now need to check that the referrer is the incumbent
    1.29 + * settings object.
    1.30 + */
    1.31 +SimpleTest.waitForExplicitFinish();
    1.32 +
    1.33 +var gNotifyCount = 0;
    1.34 +var base = window.location.href.replace(/test_bug.*/, '');
    1.35 +function notifyReferrer(referrer) {
    1.36 +  ++gNotifyCount;
    1.37 +  if (gNotifyCount == 1) {
    1.38 +    is(referrer, base + 'file_bug809290_b1.html', "Referrer should come from the incumbent script settings object (1)");
    1.39 +    document.getElementById('ifr').setAttribute('src', 'file_bug809290_b2.html');
    1.40 +  } else {
    1.41 +    is(gNotifyCount, 2, "notify count");
    1.42 +    is(referrer, base + 'file_bug809290_b2.html', "Referrer should come from the the incumbent script settings object (2)");
    1.43 +    SimpleTest.finish();
    1.44 +  }
    1.45 +}
    1.46 +
    1.47 +function go() {
    1.48 +  var ifr = document.getElementById('ifr');
    1.49 +  ifr.onload = null;
    1.50 +  ifr.contentWindow.innerLoad();
    1.51 +}
    1.52 +
    1.53 +</script>
    1.54 +</pre>
    1.55 +<iframe id="ifr" src="file_bug809290_b1.html" onload="go();"></iframe>
    1.56 +</body>
    1.57 +</html>

mercurial