- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / isolated_apps / non_app / subframe.html
1 <html>
2 <body>
3 Normal page
4
5 <script>
6   // Set a cookie from a page in an iframe.
7   var expire = new Date();
8   expire.setDate(expire.getDate() + 1);  // tomorrow
9   document.cookie = "nonAppFrame=6; path=/; expires=" + expire + ";"
10 </script>
11 </body>
12 </html>