Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Side by Side Diff: chrome/test/data/extensions/isolated_apps/app1/app_subresources.html

Issue 10836305: Ensure that isolated apps use the right cookies for media requests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge conflict. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <body>
3 Isolated App Subresource Cookies
4
5 <!-- Check that the correct set of cookies are used for images. -->
6 <img width="100" height="100"
7 src="/expect-and-set-cookie?expect=nonApp%3d1&set=nonAppImage%3d1" />
8
9 <img width="100" height="100"
10 src="/expect-and-set-cookie?expect=app1%3d3&set=app1Image%3d1" />
11
12 <!-- Check that the correct set of cookies are used for media. -->
13 <video width="100" height="100" controls="controls" preload="metadata/auto">
14 <source src="/expect-and-set-cookie?expect=nonApp%3d1&set=nonAppMedia%3d1"
15 type="video/webm">
16 </video>
17
18 <video width="100" height="100" controls="controls" preload="metadata/auto">
19 <source src="/expect-and-set-cookie?expect=app1%3d3&set=app1Media%3d1"
20 type="video/webm">
21 </video>
22
23 </body>
24 </html>
OLDNEW
« no previous file with comments | « chrome/test/base/testing_profile.cc ('k') | content/browser/download/download_manager_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698