зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
503 B
HTML
21 строка
503 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title></title>
|
||
|
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
function submitIframeForm () {
|
||
|
document.getElementById('b').submit();
|
||
|
document.getElementById('thebutton').disabled = true;
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
</head>
|
||
|
<body onload="sendMouseEvent({type:'click'}, 'thebutton')">
|
||
|
|
||
|
<form method="get" action="bug242709_load.html" id="b">
|
||
|
<input type="submit" onclick="submitIframeForm()" id="thebutton">
|
||
|
</form>
|
||
|
|
||
|
</body>
|
||
|
</html>
|