OLD | NEW |
(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> |
OLD | NEW |