- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / isolated_apps / app1 / main.html
1 <html>
2 <body>
3 Isolated App 1
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 = "app1=3; path=/; expires=" + expire + ";"
10 </script>
11
12 <!-- Include an iframe to a non-app URL. -->
13 <iframe src="../non_app/subframe.html"></iframe>
14 </body>
15 </html>