2 <script src=resources/subresource-test.js
></script>
8 'Cache-control': 'max-age=10, no-store',
10 expectedResult
: 'Uncached',
14 'Cache-control': 'max-age=10, no-cache="Set-Cookie"',
16 expectedResult
: 'Cached',
20 'Cache-control': 'max-age=10, must-revalidate',
22 expectedResult
: 'Cached',
27 'Cache-control': 'max-age=10',
29 expectedResult
: 'Uncached',
34 'Cache-control': 'max-age=10',
36 expectedResult
: 'Cached',
40 'Cache-control': 'max-age=10',
43 expectedResult
: 'Uncached',
47 'Cache-control': 'max-age=0, private, must-revalidate, max-age=60',
49 expectedResult
: 'Uncached',
53 'Cache-control': 'max-age=60, private, must-revalidate, max-age=0',
55 expectedResult
: 'Cached',
59 'Expires': '[now-10s]',
60 'Cache-control': 'max-age=10'
62 expectedResult
: 'Cached',
66 'Expires': '[now+10s]',
67 'Cache-control': 'max-age=0'
69 expectedResult
: 'Uncached',
73 'Last-modified': '[now-3600s]',
76 expectedResult
: 'Cached',
80 'Last-modified': '[now-10s]',
83 expectedResult
: 'Uncached',
87 'Last-modified': '[now+10s]',
89 expectedResult
: 'Uncached',