- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / isolated_apps / app2 / main.html
1 <html>
2 <body>
3 Isolated App 2
4
5 <script>
6   // Set a cookie within the app.
7   var expire = new Date();
8   expire.setDate(expire.getDate() + 1);  // tomorrow
9   document.cookie = "app2=4; path=/; expires=" + expire + ";"
10 </script>
11 </body>
12 </html>