summaryrefslogtreecommitdiffstats
path: root/browser/components/sessionstore/test/browser_466937_sample.html
blob: a05defa122f15f0ad9ea9b514fa8f9e833e2554d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- Testcase originally by <moz_bug_r_a4@yahoo.com> -->

<!DOCTYPE html>
<meta charset="utf-8">
<title>Test for bug 466937</title>

<input id="thief" value="/home/user/secret">
<input type="file" id="reverse_thief">
<input type="file" id="bystander">

<script>
  window.addEventListener("DOMContentLoaded", function() {
    if (!document.location.hash) {
      document.location.hash = "#ready";
    } else {
      document.getElementById("thief").type = "file";
      document.getElementById("reverse_thief").type = "text";
    }
  }, {once: true});
</script>