summaryrefslogtreecommitdiffstats
path: root/docshell/test/navigation/file_triggeringprincipal_subframe_nav.html
blob: 582181c00d840ca4ae444cd04f151c0532f89cba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE HTML>
<html>
<head><meta charset="utf-8"></head>
<body onload="checkResults()">
<b>Sub Frame 2 Navigated</b><br/>

<script type='application/javascript'>
  function checkResults() {
    // query the uri of the loadingPrincipal and the TriggeringPrincipal and pass
    // that information on to the parent for verification.
    var channel = SpecialPowers.wrap(window).docShell.currentDocumentChannel;
    var triggeringPrincipalURI = channel.loadInfo.triggeringPrincipal.asciiSpec;
    var loadingPrincipalURI = channel.loadInfo.loadingPrincipal.asciiSpec;
    var referrerURI = document.referrer;
    window.parent.parent.postMessage({triggeringPrincipalURI,
                                    loadingPrincipalURI,
                                    referrerURI}, "*");
  }
</script>
</body>
</html>