summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/state-restore-empty-state.html
blob: ca25e3aeb2c036cd0c14b0c356553ce3007f592f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test.js"></script>
</head>
<body>

<input type=submit>

<script>
jsTestIsAsync = true;

window.onload = function() {
    setTimeout(function() {
        location.href = 'resources/state-restore-empty-state-1.html';
    }, 0);
};
</script>
</body>