blob: 5d09ba39d27c2eb03f369d00cad9f661c33f69a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<html>
<script>
function goBack() {
history.back();
}
</script>
<body onload="if (!window.layoutTestController) goBack();">
If you can go back using the history : test has succeed.
</body>
</html>
|