Files
UXP-Fixed/testing/web-platform/tests/html/browsers/browsing-the-web/unloading-documents/base.html
T
2018-02-02 04:16:08 -05:00

15 lines
185 B
HTML

<!doctype html>
Base
<script>
onpagehide = function() {
if(top.base_hide) {
top.base_hide();
}
}
onpageshow = function() {
if (top.base_show) {
top.base_show();
}
}
</script>