tenfourfox/dom/tests/mochitest/beacon/beacon-frame.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

25 lines
676 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Inner frame performing a basic sendBeacon from within an iframe</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
</head>
<body>
<script type="text/javascript">
function sendBeacon()
{
var frame = window.parent.document.getElementById("frame");
var data = window.parent.beaconConvert(frame.getAttribute("data"));
var result = navigator.sendBeacon("http://mochi.test:8888/tests/dom/tests/mochitest/beacon/beacon-handler.sjs", data);
window.parent.beaconSent(result);
}
window.addEventListener("load", function() { setTimeout(sendBeacon, 0); }, false);
</script>
</body>
</html>