summaryrefslogtreecommitdiffstats
path: root/browser/components/urlbar/tests/browser/file_urlbar_edit_dos.html
blob: e02242f6a16e0e6cfa5b58c9c13f5165b480c145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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>
function dos_hash() {
  location.hash = "#";
}

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