| Index: chrome/test/data/extensions/api_test/isolated_apps/app1/main.html
 | 
| diff --git a/chrome/test/data/extensions/api_test/isolated_apps/app1/main.html b/chrome/test/data/extensions/api_test/isolated_apps/app1/main.html
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..f268f1beb867448f164915bacceb10e4190c40e1
 | 
| --- /dev/null
 | 
| +++ b/chrome/test/data/extensions/api_test/isolated_apps/app1/main.html
 | 
| @@ -0,0 +1,12 @@
 | 
| +<html>
 | 
| +<body>
 | 
| +Isolated App 1
 | 
| +
 | 
| +<script>
 | 
| +  // Set a cookie within the app.
 | 
| +  var expire = new Date();
 | 
| +  expire.setDate(expire.getDate() + 1);  // tomorrow
 | 
| +  document.cookie = "app1=3; path=/; expires=" + expire + ";"
 | 
| +</script>
 | 
| +</body>
 | 
| +</html>
 | 
| 
 |