blob: 7fa300a664c883be15c1cdc84c371d1a1f2f993d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<html>
<head>
<script>
function test()
{
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
document.forms[0].submit();
}
window.onload = test;
</script>
</head>
<body>
<form enctype="multipart/form-data" method="POST" action="resources/check-unnamed-file-included-in-formdata.php">
<input name="data" type="file"></input>
</form>
</body>
</html>
|