chromium/chrome/test/data/extensions/platform_apps/web_view/cookie_isolation/set_cookie.html

<!--
  Copyright 2015 The Chromium Authors
  Use of this source code is governed by a BSD-style license that can be
  found in the LICENSE file.
  -->

<!DOCTYPE html>
<html>
  <head>
  </head>
  <body>
    <p> This document writes the following cookie: 'testCookie=1' </p>
  </body>
  <script>
var expire = new Date();
expire.setDate(expire.getDate() + 1);
document.cookie = 'testCookie=1;path=/;expire=' + expire + ';';
  </script>

</html>