summaryrefslogtreecommitdiffstats
path: root/layout/forms/test/bug536567_subframe.html
blob: c1271becf064dae40c65dca04463c806cac78d79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<body>
<input id="target" type="file" />
<script type="text/javascript">

window.onload = function() {
  var fileInput = document.getElementById("target");
  fileInput.click();
};

</script>
</body>
</html>