summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/urlbar/file_urlbar_edit_dos.html
blob: 5a6e7d109a7813ec91abd7689d4f1900fbe2a486 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Try editing the URL bar</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"></meta>
</head>
<body>
<script>
var dos_timeout = null;
function dos_hash() {
  dos_timeout = setTimeout(function() {
    location.hash = "#";
  }, 50);
}

function dos_pushState() {
  dos_timeout = setTimeout(function() {
    history.pushState({}, "Some title", "");
  }, 50);
}
</script>
</body>
</html>