2 // Copyright 2013 The Chromium Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
8 <title>unload_sets_cookie
</title>
10 addEventListener("unload", function() {
11 var expires
= new Date();
12 expires
.setMinutes(expires
.getMinutes() + 1);
13 document
.cookie
= "unloaded=ohyeah;path=/;expires=" + expires
.toUTCString();