summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/browsing-the-web/unloading-documents/base.html
blob: 70c07cba4cabb35e867943748e2c1e39b66efc7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
Base
<script>
onpagehide = function() {
  if(top.base_hide) {
    top.base_hide();
  }
}
onpageshow = function() {
if (top.base_show) {
  top.base_show();
}
}
</script>