 Chromium Code Reviews
 Chromium Code Reviews Issue 6201005:
  Initial support for partitioning cookies for isolated apps.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 6201005:
  Initial support for partitioning cookies for isolated apps.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| Index: chrome/test/data/extensions/api_test/isolated_apps/non_app/subframe.html | 
| diff --git a/chrome/test/data/extensions/api_test/isolated_apps/non_app/subframe.html b/chrome/test/data/extensions/api_test/isolated_apps/non_app/subframe.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..41fb7e7f31be59a08eaac8348eac0774c9df7e64 | 
| --- /dev/null | 
| +++ b/chrome/test/data/extensions/api_test/isolated_apps/non_app/subframe.html | 
| @@ -0,0 +1,12 @@ | 
| +<html> | 
| +<body> | 
| +Normal page | 
| + | 
| +<script> | 
| + // Set a cookie from a page in an iframe. | 
| + var expire = new Date(); | 
| + expire.setDate(expire.getDate() + 1); // tomorrow | 
| + document.cookie = "nonAppFrame=6; path=/; expires=" + expire + ";" | 
| +</script> | 
| +</body> | 
| +</html> |