gecko/browser/components/sessionstore/test/browser_input_sample.html

19 lines
554 B
HTML

<!DOCTYPE HTML>
<html dir="ltr" xml:lang="en-US" lang="en-US">
<head>
<meta charset="utf-8">
<title>sessionstore input test</title>
</head>
<body>
<input id="chk" type="checkbox" /><input id="txt" />
<iframe id="ifr" src="data:text/html;charset=utf-8,<input id=chk type=checkbox /><input id=txt />"></iframe>
<iframe id="ced"></iframe>
<script type="text/javascript">
addEventListener("load", () => {
document.getElementById("ced").contentDocument.designMode = "on";
});
</script>
</body>
</html>