summaryrefslogtreecommitdiffstats
path: root/docshell/test/navigation/file_triggeringprincipal_subframe_nav.html
blob: 3bf7097a6c41a40d6761bf8a8ef4df993b513164 (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(document).docShell.currentDocumentChannel;
    var triggeringPrincipalURI = channel.loadInfo.triggeringPrincipal.URI.asciiSpec;
    var loadingPrincipalURI = channel.loadInfo.loadingPrincipal.URI.asciiSpec;
    var referrerURI = document.referrer;
    window.parent.parent.postMessage({triggeringPrincipalURI,
    	                              loadingPrincipalURI,
    	                              referrerURI}, '*');
  }
</script>
</body>
</html>