Files
servo/tests/wpt/web-platform-tests/html/browsers/browsing-the-web/unloading-documents/base.html

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>