mirror of
https://github.com/servo/servo
synced 2026-05-02 12:26:06 +02:00
15 lines
185 B
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>
|