tenfourfox/browser/components/sessionstore/test/browser_formdata_sample.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

21 lines
489 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>browser_formdata_sample.html</title>
</head>
<body>
<input id="txt" />
<script type="text/javascript;version=1.8">
let isOuter = window == window.top;
if (isOuter) {
let iframe = document.createElement("iframe");
iframe.setAttribute("src", "https://example.com" + location.pathname);
document.body.appendChild(iframe);
}
</script>
</body>
</html>