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