3 <title>Loading...
</title>
5 <body onload=
"attachUnloadListener()">
7 function attachUnloadListener() {
8 window
.addEventListener('unload', onUnload
, false);
9 document
.title
= "set cookie on unload";
13 document
.cookie
= "onunloadCookie=foo";
16 <p>Navigate to another page to set cookie
</p>