| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>Loading...</title> | 3 <title>Loading...</title> |
| 4 </head> | 4 </head> |
| 5 <body onload="attachUnloadListener()"> | 5 <body onload="onLoad()" onunload="onUnload()"> |
| 6 <script> | 6 <script> |
| 7 function attachUnloadListener() { | 7 function onLoad() { |
| 8 window.addEventListener('unload', onUnload, false); | 8 window.top.postMessage('message', '*'); |
| 9 document.title = "set cookie on unload"; | 9 document.title = "set cookie on unload"; |
| 10 } | 10 } |
| 11 | 11 |
| 12 function onUnload() { | 12 function onUnload() { |
| 13 document.cookie = "onunloadCookie=foo"; | 13 document.cookie = "onunloadCookie=foo"; |
| 14 } | 14 } |
| 15 </script> | 15 </script> |
| 16 <p>Navigate to another page to set cookie</p> | 16 <p>Navigate to another page to set cookie</p> |
| 17 </body> | 17 </body> |
| 18 </html> | 18 </html> |
| OLD | NEW |