<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[181894] trunk</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/181894">181894</a></dd>
<dt>Author</dt> <dd>cdumez@apple.com</dd>
<dt>Date</dt> <dd>2015-03-24 09:44:19 -0700 (Tue, 24 Mar 2015)</dd>
</dl>

<h3>Log Message</h3>
<pre>[WK2] The WebKit network cache does not cache responses with &quot;Content-Disposition: attachment&quot; header
https://bugs.webkit.org/show_bug.cgi?id=142989
&lt;rdar://problem/20265992&gt;

Reviewed by Antti Koivisto.

Source/WebKit2:

Update our WebKit network cache policy to cache responses with
&quot;Content-Disposition: attachment&quot; header. There is no reason we cannot
cache these and our memory cache already does.

This was causing a decent amount of cache misses in the wild. I have
noticed for example that when loading disney.com, we fail to cache the
following resources because of this policy:
http://pagead2.googlesyndication.com/pagead/osd.js
http://pagead2.googlesyndication.com/pagead/show_companion_ad.js

Those resources have Cache-Control headers that indicate they are meant
to be cacheable.

Test: http/tests/cache/disk-cache-validation-attachment.html

* NetworkProcess/cache/NetworkCache.cpp:
(WebKit::NetworkCache::canStore):

LayoutTests:

Add layout test to check that resources whose response has the
&quot;Content-Disposition: attachment&quot; header are cacheable.

Also move all disk cache layout tests to a disk-cache sub-folder to
facilitate skipping on platforms that don't have the WebKit network
disk cache.

* http/tests/cache/disk-cache/disk-cache-disable-expected.txt: Renamed from LayoutTests/http/tests/cache/disk-cache-disable-expected.txt.
* http/tests/cache/disk-cache/disk-cache-disable.html: Renamed from LayoutTests/http/tests/cache/disk-cache-disable.html.
* http/tests/cache/disk-cache/disk-cache-redirect-to-data-expected.txt: Renamed from LayoutTests/http/tests/cache/disk-cache-redirect-to-data-expected.txt.
* http/tests/cache/disk-cache/disk-cache-redirect-to-data.html: Renamed from LayoutTests/http/tests/cache/disk-cache-redirect-to-data.html.
* http/tests/cache/disk-cache/disk-cache-validation-attachment-expected.txt: Added.
* http/tests/cache/disk-cache/disk-cache-validation-attachment.html: Added.
* http/tests/cache/disk-cache/disk-cache-validation-back-navigation-policy-expected.txt: Renamed from LayoutTests/http/tests/cache/disk-cache-validation-back-navigation-policy-expected.txt.
* http/tests/cache/disk-cache/disk-cache-validation-back-navigation-policy.html: Renamed from LayoutTests/http/tests/cache/disk-cache-validation-back-navigation-policy.html.
* http/tests/cache/disk-cache/disk-cache-validation-expected.txt: Renamed from LayoutTests/http/tests/cache/disk-cache-validation-expected.txt.
* http/tests/cache/disk-cache/disk-cache-validation.html: Renamed from LayoutTests/http/tests/cache/disk-cache-validation.html.
* http/tests/cache/disk-cache/disk-cache-vary-cookie-expected.txt: Renamed from LayoutTests/http/tests/cache/disk-cache-vary-cookie-expected.txt.
* http/tests/cache/disk-cache/disk-cache-vary-cookie.html: Renamed from LayoutTests/http/tests/cache/disk-cache-vary-cookie.html.
* http/tests/cache/disk-cache/resources/cache-test.js: Renamed from LayoutTests/http/tests/cache/resources/cache-test.js.
* http/tests/cache/disk-cache/resources/generate-response.cgi: Renamed from LayoutTests/http/tests/cache/resources/generate-response.cgi.
* platform/efl/TestExpectations:
* platform/gtk/TestExpectations:
* platform/mac-wk1/TestExpectations:
* platform/win/TestExpectations:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkLayoutTestsplatformeflTestExpectations">trunk/LayoutTests/platform/efl/TestExpectations</a></li>
<li><a href="#trunkLayoutTestsplatformgtkTestExpectations">trunk/LayoutTests/platform/gtk/TestExpectations</a></li>
<li><a href="#trunkLayoutTestsplatformmacwk1TestExpectations">trunk/LayoutTests/platform/mac-wk1/TestExpectations</a></li>
<li><a href="#trunkLayoutTestsplatformwinTestExpectations">trunk/LayoutTests/platform/win/TestExpectations</a></li>
<li><a href="#trunkSourceWebKit2ChangeLog">trunk/Source/WebKit2/ChangeLog</a></li>
<li><a href="#trunkSourceWebKit2NetworkProcesscacheNetworkCachecpp">trunk/Source/WebKit2/NetworkProcess/cache/NetworkCache.cpp</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li>trunk/LayoutTests/http/tests/cache/disk-cache/</li>
<li><a href="#trunkLayoutTestshttptestscachediskcachediskcachedisableexpectedtxt">trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-disable-expected.txt</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachediskcachedisablehtml">trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-disable.html</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachediskcacheredirecttodataexpectedtxt">trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-redirect-to-data-expected.txt</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachediskcacheredirecttodatahtml">trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-redirect-to-data.html</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachediskcachevalidationattachmentexpectedtxt">trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-attachment-expected.txt</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachediskcachevalidationattachmenthtml">trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-attachment.html</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachediskcachevalidationbacknavigationpolicyexpectedtxt">trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-back-navigation-policy-expected.txt</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachediskcachevalidationbacknavigationpolicyhtml">trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-back-navigation-policy.html</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachediskcachevalidationexpectedtxt">trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-expected.txt</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachediskcachevalidationhtml">trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation.html</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachediskcachevarycookieexpectedtxt">trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-vary-cookie-expected.txt</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachediskcachevarycookiehtml">trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-vary-cookie.html</a></li>
<li>trunk/LayoutTests/http/tests/cache/disk-cache/resources/</li>
<li><a href="#trunkLayoutTestshttptestscachediskcacheresourcescachetestjs">trunk/LayoutTests/http/tests/cache/disk-cache/resources/cache-test.js</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcacheresourcesgenerateresponsecgi">trunk/LayoutTests/http/tests/cache/disk-cache/resources/generate-response.cgi</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcacheresourcesredirecttodataphp">trunk/LayoutTests/http/tests/cache/disk-cache/resources/redirect-to-data.php</a></li>
</ul>

<h3>Removed Paths</h3>
<ul>
<li><a href="#trunkLayoutTestshttptestscachediskcachedisableexpectedtxt">trunk/LayoutTests/http/tests/cache/disk-cache-disable-expected.txt</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachedisablehtml">trunk/LayoutTests/http/tests/cache/disk-cache-disable.html</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcacheredirecttodataexpectedtxt">trunk/LayoutTests/http/tests/cache/disk-cache-redirect-to-data-expected.txt</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcacheredirecttodatahtml">trunk/LayoutTests/http/tests/cache/disk-cache-redirect-to-data.html</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachevalidationbacknavigationpolicyexpectedtxt">trunk/LayoutTests/http/tests/cache/disk-cache-validation-back-navigation-policy-expected.txt</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachevalidationbacknavigationpolicyhtml">trunk/LayoutTests/http/tests/cache/disk-cache-validation-back-navigation-policy.html</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachevalidationexpectedtxt">trunk/LayoutTests/http/tests/cache/disk-cache-validation-expected.txt</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachevalidationhtml">trunk/LayoutTests/http/tests/cache/disk-cache-validation.html</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachevarycookieexpectedtxt">trunk/LayoutTests/http/tests/cache/disk-cache-vary-cookie-expected.txt</a></li>
<li><a href="#trunkLayoutTestshttptestscachediskcachevarycookiehtml">trunk/LayoutTests/http/tests/cache/disk-cache-vary-cookie.html</a></li>
<li><a href="#trunkLayoutTestshttptestscacheresourcescachetestjs">trunk/LayoutTests/http/tests/cache/resources/cache-test.js</a></li>
<li><a href="#trunkLayoutTestshttptestscacheresourcesgenerateresponsecgi">trunk/LayoutTests/http/tests/cache/resources/generate-response.cgi</a></li>
<li><a href="#trunkLayoutTestshttptestscacheresourcesredirecttodataphp">trunk/LayoutTests/http/tests/cache/resources/redirect-to-data.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/ChangeLog        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,3 +1,37 @@
</span><ins>+2015-03-24  Chris Dumez  &lt;cdumez@apple.com&gt;
+
+        [WK2] The WebKit network cache does not cache responses with &quot;Content-Disposition: attachment&quot; header
+        https://bugs.webkit.org/show_bug.cgi?id=142989
+        &lt;rdar://problem/20265992&gt;
+
+        Reviewed by Antti Koivisto.
+
+        Add layout test to check that resources whose response has the
+        &quot;Content-Disposition: attachment&quot; header are cacheable.
+
+        Also move all disk cache layout tests to a disk-cache sub-folder to
+        facilitate skipping on platforms that don't have the WebKit network
+        disk cache.
+
+        * http/tests/cache/disk-cache/disk-cache-disable-expected.txt: Renamed from LayoutTests/http/tests/cache/disk-cache-disable-expected.txt.
+        * http/tests/cache/disk-cache/disk-cache-disable.html: Renamed from LayoutTests/http/tests/cache/disk-cache-disable.html.
+        * http/tests/cache/disk-cache/disk-cache-redirect-to-data-expected.txt: Renamed from LayoutTests/http/tests/cache/disk-cache-redirect-to-data-expected.txt.
+        * http/tests/cache/disk-cache/disk-cache-redirect-to-data.html: Renamed from LayoutTests/http/tests/cache/disk-cache-redirect-to-data.html.
+        * http/tests/cache/disk-cache/disk-cache-validation-attachment-expected.txt: Added.
+        * http/tests/cache/disk-cache/disk-cache-validation-attachment.html: Added.
+        * http/tests/cache/disk-cache/disk-cache-validation-back-navigation-policy-expected.txt: Renamed from LayoutTests/http/tests/cache/disk-cache-validation-back-navigation-policy-expected.txt.
+        * http/tests/cache/disk-cache/disk-cache-validation-back-navigation-policy.html: Renamed from LayoutTests/http/tests/cache/disk-cache-validation-back-navigation-policy.html.
+        * http/tests/cache/disk-cache/disk-cache-validation-expected.txt: Renamed from LayoutTests/http/tests/cache/disk-cache-validation-expected.txt.
+        * http/tests/cache/disk-cache/disk-cache-validation.html: Renamed from LayoutTests/http/tests/cache/disk-cache-validation.html.
+        * http/tests/cache/disk-cache/disk-cache-vary-cookie-expected.txt: Renamed from LayoutTests/http/tests/cache/disk-cache-vary-cookie-expected.txt.
+        * http/tests/cache/disk-cache/disk-cache-vary-cookie.html: Renamed from LayoutTests/http/tests/cache/disk-cache-vary-cookie.html.
+        * http/tests/cache/disk-cache/resources/cache-test.js: Renamed from LayoutTests/http/tests/cache/resources/cache-test.js.
+        * http/tests/cache/disk-cache/resources/generate-response.cgi: Renamed from LayoutTests/http/tests/cache/resources/generate-response.cgi.
+        * platform/efl/TestExpectations:
+        * platform/gtk/TestExpectations:
+        * platform/mac-wk1/TestExpectations:
+        * platform/win/TestExpectations:
+
</ins><span class="cx"> 2015-03-24  Michael Saboff  &lt;msaboff@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         REGRESSION (172175-172177): Change in for...in processing causes properties added in loop to be enumerated
</span></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachediskcachedisableexpectedtxtfromrev181893trunkLayoutTestshttptestscachediskcachedisableexpectedtxt"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-disable-expected.txt (from rev 181893, trunk/LayoutTests/http/tests/cache/disk-cache-disable-expected.txt) (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-disable-expected.txt                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-disable-expected.txt        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,21 @@
</span><ins>+Test that disabling disk cache by setting the cache model works.
+
+On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
+
+
+Default (cache enabled)
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
+response source: Disk cache
+
+Disabling cache
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
+response source: Network
+
+Re-enabling cache
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
+response source: Disk cache
+
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachediskcachedisablehtmlfromrev181893trunkLayoutTestshttptestscachediskcachedisablehtml"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-disable.html (from rev 181893, trunk/LayoutTests/http/tests/cache/disk-cache-disable.html) (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-disable.html                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-disable.html        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,25 @@
</span><ins>+&lt;script src=&quot;/js-test-resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
+&lt;script src=&quot;resources/cache-test.js&quot;&gt;&lt;/script&gt;
+&lt;body&gt;
+&lt;script&gt;
+
+var tests =
+[
+  { responseHeaders: {'Cache-control': 'max-age=100' } },
+];
+
+description(&quot;Test that disabling disk cache by setting the cache model works.&quot;);
+
+debug(&quot;Default (cache enabled)&quot;);
+runTests(tests, function () {
+    debug(&quot;Disabling cache&quot;);
+    testRunner.setCacheModel(0); // DocumentViewer
+    runTests(tests, function () {
+         debug(&quot;Re-enabling cache&quot;);
+         testRunner.setCacheModel(1); // DocumentBrowser
+         runTests(tests);
+    });
+});
+
+&lt;/script&gt;
+&lt;script src=&quot;/js-test-resources/js-test-post.js&quot;&gt;&lt;/script&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachediskcacheredirecttodataexpectedtxtfromrev181893trunkLayoutTestshttptestscachediskcacheredirecttodataexpectedtxt"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-redirect-to-data-expected.txt (from rev 181893, trunk/LayoutTests/http/tests/cache/disk-cache-redirect-to-data-expected.txt) (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-redirect-to-data-expected.txt                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-redirect-to-data-expected.txt        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,10 @@
</span><ins>+Test that HTTP redirect to a data URL does not crash or assert in the network process.
+
+On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
+
+
+PASS success is true
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachediskcacheredirecttodatahtmlfromrev181893trunkLayoutTestshttptestscachediskcacheredirecttodatahtml"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-redirect-to-data.html (from rev 181893, trunk/LayoutTests/http/tests/cache/disk-cache-redirect-to-data.html) (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-redirect-to-data.html                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-redirect-to-data.html        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,7 @@
</span><ins>+&lt;script src=&quot;/js-test-resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
+&lt;script src=resources/redirect-to-data.php&gt;&lt;/script&gt;
+&lt;script&gt;
+description(&quot;Test that HTTP redirect to a data URL does not crash or assert in the network process.&quot;);
+shouldBeTrue(&quot;success&quot;);
+&lt;/script&gt;
+&lt;script src=&quot;/js-test-resources/js-test-post.js&quot;&gt;&lt;/script&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachediskcachevalidationattachmentexpectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-attachment-expected.txt (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-attachment-expected.txt                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-attachment-expected.txt        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,29 @@
</span><ins>+Tests that responses with 'content-disposition: attachment' are cacheable
+
+On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
+
+
+running 6 tests
+
+response headers: undefined
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
+response source: Disk cache
+
+response headers: {&quot;Content-Disposition&quot;:&quot;attachment; filename=\&quot;f.txt\&quot;&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Content-Disposition&quot;:&quot;attachment; filename=\&quot;f.txt\&quot;&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Content-Disposition&quot;:&quot;attachment; filename=\&quot;f.txt\&quot;&quot;}
+response source: Disk cache
+
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachediskcachevalidationattachmenthtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-attachment.html (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-attachment.html                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-attachment.html        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,29 @@
</span><ins>+&lt;script src=&quot;/js-test-resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
+&lt;script src=&quot;resources/cache-test.js&quot;&gt;&lt;/script&gt;
+&lt;body&gt;
+&lt;script&gt;
+
+var testMatrix =
+[
+ [
+  {},
+  { responseHeaders: {'Cache-control': 'max-age=0' } },
+  { responseHeaders: {'Cache-control': 'max-age=100' } },
+  ],
+ [
+  {},
+  { responseHeaders: {'Content-Disposition': 'attachment; filename=&quot;f.txt&quot;' } },
+  ],
+ ];
+
+description(&quot;Tests that responses with 'content-disposition: attachment' are cacheable&quot;);
+
+var tests = generateTests(testMatrix);
+
+debug(&quot;running &quot; + tests.length + &quot; tests&quot;);
+debug(&quot;&quot;);
+
+runTests(tests);
+
+&lt;/script&gt;
+&lt;script src=&quot;/js-test-resources/js-test-post.js&quot;&gt;&lt;/script&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachediskcachevalidationbacknavigationpolicyexpectedtxtfromrev181893trunkLayoutTestshttptestscachediskcachevalidationbacknavigationpolicyexpectedtxt"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-back-navigation-policy-expected.txt (from rev 181893, trunk/LayoutTests/http/tests/cache/disk-cache-validation-back-navigation-policy-expected.txt) (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-back-navigation-policy-expected.txt                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-back-navigation-policy-expected.txt        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,173 @@
</span><ins>+Test permutations of various cache headers when using back navigation cache policy
+
+On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
+
+
+running 54 tests
+
+response headers: undefined
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;}
+response source: Disk cache
+
+response headers: {&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;must-revalidate&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, must-revalidate&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, must-revalidate&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store, must-revalidate&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store, must-revalidate&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store, must-revalidate&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache, must-revalidate&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache, must-revalidate&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache, must-revalidate&quot;}
+response source: Disk cache
+
+response headers: {&quot;ETag&quot;:&quot;match&quot;,&quot;Cache-control&quot;:&quot;must-revalidate&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Cache-control&quot;:&quot;must-revalidate&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachediskcachevalidationbacknavigationpolicyhtmlfromrev181893trunkLayoutTestshttptestscachediskcachevalidationbacknavigationpolicyhtml"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-back-navigation-policy.html (from rev 181893, trunk/LayoutTests/http/tests/cache/disk-cache-validation-back-navigation-policy.html) (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-back-navigation-policy.html                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-back-navigation-policy.html        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,42 @@
</span><ins>+&lt;script src=&quot;/js-test-resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
+&lt;script src=&quot;resources/cache-test.js&quot;&gt;&lt;/script&gt;
+&lt;body&gt;
+&lt;script&gt;
+
+var testMatrix =
+[
+ [
+  {},
+  { responseHeaders: {'Cache-control': 'max-age=0' } },
+  { responseHeaders: {'Cache-control': 'max-age=100' } },
+  ],
+ [
+  {},
+  { responseHeaders: {'Cache-control': 'no-store' } },
+  { responseHeaders: {'Cache-control': 'no-cache' } },
+  ],
+ [
+  {},
+  { responseHeaders: {'ETag': 'match' } },
+  { responseHeaders: {'ETag': 'nomatch' } },
+  ],
+ [
+  {},
+  { responseHeaders: {'Cache-control': 'must-revalidate' } },
+  ],
+ ];
+
+description(&quot;Test permutations of various cache headers when using back navigation cache policy&quot;);
+
+// Simulate cache behavior on back navigation.
+internals.setOverrideCachePolicy(&quot;ReturnCacheDataElseLoad&quot;);
+
+var tests = generateTests(testMatrix);
+
+debug(&quot;running &quot; + tests.length + &quot; tests&quot;);
+debug(&quot;&quot;);
+
+runTests(tests);
+
+&lt;/script&gt;
+&lt;script src=&quot;/js-test-resources/js-test-post.js&quot;&gt;&lt;/script&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachediskcachevalidationexpectedtxtfromrev181893trunkLayoutTestshttptestscachediskcachevalidationexpectedtxt"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-expected.txt (from rev 181893, trunk/LayoutTests/http/tests/cache/disk-cache-validation-expected.txt) (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-expected.txt                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation-expected.txt        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,902 @@
</span><ins>+Test permutations of various cache headers
+
+On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
+
+
+running 243 tests
+
+response headers: undefined
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
+response source: Disk cache
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;}
+response source: Disk cache
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;}
+response source: Network
+
+response headers: {&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
+response source: Network
+
+response headers: {&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache after validation
+
+response headers: {&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Disk cache
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
+response source: Network
+
+response headers: {&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
+request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
+response source: Network
+
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachediskcachevalidationhtmlfromrev181893trunkLayoutTestshttptestscachediskcachevalidationhtml"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation.html (from rev 181893, trunk/LayoutTests/http/tests/cache/disk-cache-validation.html) (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation.html                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-validation.html        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,45 @@
</span><ins>+&lt;script src=&quot;/js-test-resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
+&lt;script src=&quot;resources/cache-test.js&quot;&gt;&lt;/script&gt;
+&lt;body&gt;
+&lt;script&gt;
+
+var testMatrix =
+[
+ [
+  {},
+  { responseHeaders: {'Cache-control': 'max-age=0' } },
+  { responseHeaders: {'Cache-control': 'max-age=100' } },
+  ],
+ [
+  {},
+  { responseHeaders: {'Expires': 'now(0)' } },
+  { responseHeaders: {'Expires': 'now(100)' } },
+  ],
+ [
+  {},
+  { responseHeaders: {'Cache-control': 'no-store' } },
+  { responseHeaders: {'Cache-control': 'no-cache' } },
+  ],
+ [
+  {},
+  { responseHeaders: {'ETag': 'match' } },
+  { responseHeaders: {'ETag': 'nomatch' } },
+  ],
+ [
+  {},
+  { responseHeaders: {'Vary': 'Accept-Language' }, requestHeaders: { 'Accept-Language': 'en' } },
+  { responseHeaders: {'Vary': 'Accept-Language' }, requestHeaders: { 'Accept-Language': 'unique()' } },
+  ],
+ ];
+
+description(&quot;Test permutations of various cache headers&quot;);
+
+var tests = generateTests(testMatrix);
+
+debug(&quot;running &quot; + tests.length + &quot; tests&quot;);
+debug(&quot;&quot;);
+
+runTests(tests);
+
+&lt;/script&gt;
+&lt;script src=&quot;/js-test-resources/js-test-post.js&quot;&gt;&lt;/script&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachediskcachevarycookieexpectedtxtfromrev181893trunkLayoutTestshttptestscachediskcachevarycookieexpectedtxt"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-vary-cookie-expected.txt (from rev 181893, trunk/LayoutTests/http/tests/cache/disk-cache-vary-cookie-expected.txt) (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-vary-cookie-expected.txt                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-vary-cookie-expected.txt        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,37 @@
</span><ins>+Test that Vary: Cookie in response is handled by the disk cache.
+
+On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
+
+
+Setting cookie and loading
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
+response source: Network
+
+response headers: {&quot;Vary&quot;:&quot;Cookie&quot;,&quot;Cache-control&quot;:&quot;max-age=100&quot;}
+response source: Network
+
+Loading again
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
+response source: Disk cache
+
+response headers: {&quot;Vary&quot;:&quot;Cookie&quot;,&quot;Cache-control&quot;:&quot;max-age=100&quot;}
+response source: Disk cache
+
+Changing cookie and loading
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
+response source: Disk cache
+
+response headers: {&quot;Vary&quot;:&quot;Cookie&quot;,&quot;Cache-control&quot;:&quot;max-age=100&quot;}
+response source: Network
+
+Loading again
+response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
+response source: Disk cache
+
+response headers: {&quot;Vary&quot;:&quot;Cookie&quot;,&quot;Cache-control&quot;:&quot;max-age=100&quot;}
+response source: Disk cache
+
+PASS successfullyParsed is true
+
+TEST COMPLETE
+
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachediskcachevarycookiehtmlfromrev181893trunkLayoutTestshttptestscachediskcachevarycookiehtml"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-vary-cookie.html (from rev 181893, trunk/LayoutTests/http/tests/cache/disk-cache-vary-cookie.html) (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-vary-cookie.html                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/disk-cache-vary-cookie.html        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,38 @@
</span><ins>+&lt;script src=&quot;/js-test-resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
+&lt;script src=&quot;resources/cache-test.js&quot;&gt;&lt;/script&gt;
+&lt;body&gt;
+&lt;script&gt;
+
+var tests =
+[
+  { responseHeaders: {'Cache-control': 'max-age=100'} },
+  { responseHeaders: {'Vary': 'Cookie', 'Cache-control': 'max-age=100'} },
+];
+
+description(&quot;Test that Vary: Cookie in response is handled by the disk cache.&quot;);
+
+debug(&quot;Setting cookie and loading&quot;);
+document.cookie = &quot;cookie=value&quot;;
+loadResources(tests, function () {
+    printResults(tests);
+    internals.clearMemoryCache();
+    debug(&quot;Loading again&quot;);
+    loadResources(tests, function () {
+        printResults(tests);
+        internals.clearMemoryCache();
+        debug(&quot;Changing cookie and loading&quot;);
+        document.cookie = &quot;cookie=othervalue&quot;;
+        loadResources(tests, function () {
+            printResults(tests);
+            internals.clearMemoryCache()
+            debug(&quot;Loading again&quot;);
+            loadResources(tests, function () {
+               printResults(tests);
+               finishJSTest();
+            });
+        });
+    });
+});
+
+&lt;/script&gt;
+&lt;script src=&quot;/js-test-resources/js-test-post.js&quot;&gt;&lt;/script&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcacheresourcescachetestjsfromrev181893trunkLayoutTestshttptestscacheresourcescachetestjs"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/http/tests/cache/disk-cache/resources/cache-test.js (from rev 181893, trunk/LayoutTests/http/tests/cache/resources/cache-test.js) (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/resources/cache-test.js                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/resources/cache-test.js        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,144 @@
</span><ins>+window.jsTestIsAsync = true;
+
+if (location.protocol != &quot;http:&quot; || location.host != &quot;127.0.0.1:8000&quot;) {
+    testFailed(&quot;This test must be run from http://127.0.0.1:8000&quot;);
+    finishJSTest();
+}
+
+if (!window.internals) {
+    testFailed(&quot;This test requires window.internals&quot;);
+    finishJSTest();
+}
+
+function getServerDate()
+{
+    var req = new XMLHttpRequest();
+    var t0 = new Date().getTime();
+    req.open('GET', &quot;/cache/resources/current-time.cgi&quot;, false /* blocking */);
+    req.send();
+    var serverToClientTime = (new Date().getTime() - t0) / 2;
+    if (req.status != 200) {
+        console.log(&quot;unexpected status code &quot; + req.status + &quot;, expected 200.&quot;);
+        return new Date();
+    }
+    return new Date((parseInt(req.responseText) * 1000) + serverToClientTime);
+}
+
+var serverClientTimeDelta = getServerDate().getTime() - new Date().getTime();
+
+var uniqueIdCounter = 0;
+function makeHeaderValue(value)
+{
+    if (value == 'now(0)')
+        return (new Date(new Date().getTime() + serverClientTimeDelta)).toUTCString();
+    if (value == 'now(100)')
+        return (new Date(new Date().getTime() + serverClientTimeDelta + 100 * 1000)).toUTCString();
+    if (value == 'unique()')
+        return &quot;&quot; + uniqueIdCounter++;
+    return value;
+}
+
+function generateTestURL(test)
+{
+    var uniqueTestId = Math.floor((Math.random() * 1000000000000));
+    var testURL = &quot;resources/generate-response.cgi?uniqueId=&quot; + uniqueTestId++ + &quot;&amp;Content-type=text/plain&quot;;
+    for (var header in test.responseHeaders)
+        testURL += '&amp;' + header + '=' + makeHeaderValue(test.responseHeaders[header]);
+    return testURL;
+}
+
+function loadResource(test, onload)
+{
+    if (!test.url)
+        test.url = generateTestURL(test);
+
+    test.xhr = new XMLHttpRequest();
+    test.xhr.onload = onload;
+    test.xhr.open(&quot;get&quot;, test.url, true);
+
+    for (var header in test.requestHeaders)
+        test.xhr.setRequestHeader(header, makeHeaderValue(test.requestHeaders[header]));
+
+    test.xhr.send();
+}
+
+function loadResources(tests, completetion)
+{
+    var pendingCount = tests.length;
+    for (var i = 0; i &lt; tests.length; ++i) {
+        loadResource(tests[i], function (ev) {
+            --pendingCount;
+            if (!pendingCount)
+                completetion();
+         });
+    }
+}
+
+function printResults(tests)
+{
+    for (var i = 0; i &lt; tests.length; ++i) {
+        var test = tests[i];
+        debug(&quot;response headers: &quot; + JSON.stringify(test.responseHeaders));
+        if (test.requestHeaders)
+            debug(&quot;request headers: &quot; + JSON.stringify(test.requestHeaders));
+        responseSource = internals.xhrResponseSource(test.xhr);
+        debug(&quot;response source: &quot; + responseSource);
+        debug(&quot;&quot;);
+    }
+}
+
+function runTests(tests, completionHandler)
+{
+    loadResources(tests, function () {
+        // Otherwise we just get responses from the memory cache.
+        internals.clearMemoryCache();
+        // Wait a bit so things settle down in the disk cache.
+        setTimeout(function () {
+            loadResources(tests, function () {
+                printResults(tests);
+                if (completionHandler)
+                    completionHandler();
+                else
+                    finishJSTest();
+            });
+        }, 100);
+    });
+}
+
+function mergeFields(field, componentField)
+{
+    for (var name in componentField) {
+        if (field[name])
+            field[name] += &quot;, &quot; + componentField[name];
+        else
+            field[name] = componentField[name];
+    }
+}
+
+function generateTests(testMatrix)
+{
+    var tests = [];
+
+    var testCount = 1;
+    for (var i = 0; i &lt; testMatrix.length; ++i)
+        testCount *= testMatrix[i].length;
+
+    for (var testNumber = 0; testNumber &lt; testCount; ++testNumber) {
+        var test = {}
+
+        var index = testNumber;
+        for (var i = 0; i &lt; testMatrix.length; ++i) {
+            var components = testMatrix[i];
+            var component = components[index % components.length];
+            index = Math.floor(index / components.length);
+
+            for (var field in component) {
+                if (!test[field])
+                    test[field] = {}
+                mergeFields(test[field], component[field]);
+            }
+        }
+        tests.push(test);
+    }
+    return tests;
+}
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcacheresourcesgenerateresponsecgifromrev181893trunkLayoutTestshttptestscacheresourcesgenerateresponsecgi"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/http/tests/cache/disk-cache/resources/generate-response.cgi (from rev 181893, trunk/LayoutTests/http/tests/cache/resources/generate-response.cgi) (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/resources/generate-response.cgi                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/resources/generate-response.cgi        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,18 @@
</span><ins>+#!/usr/bin/perl -w
+
+use CGI;
+use HTTP::Date;
+
+my $query = new CGI;
+@names = $query-&gt;param;
+
+if ($query-&gt;http &amp;&amp; $query-&gt;http(&quot;If-None-Match&quot;) eq &quot;match&quot;) {
+    print &quot;Status: 304\n&quot;;
+}
+
+foreach (@names) {
+    next if ($_ eq &quot;uniqueId&quot;);
+    print $_ . &quot;: &quot; . $query-&gt;param($_) . &quot;\n&quot;;
+}
+print &quot;\n&quot;;
+print &quot;test&quot;;
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcacheresourcesredirecttodataphpfromrev181893trunkLayoutTestshttptestscacheresourcesredirecttodataphp"></a>
<div class="copfile"><h4>Copied: trunk/LayoutTests/http/tests/cache/disk-cache/resources/redirect-to-data.php (from rev 181893, trunk/LayoutTests/http/tests/cache/resources/redirect-to-data.php) (0 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache/resources/redirect-to-data.php                                (rev 0)
+++ trunk/LayoutTests/http/tests/cache/disk-cache/resources/redirect-to-data.php        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -0,0 +1,4 @@
</span><ins>+&lt;?
+header('Status: 301 Moved Permanently');
+header('Location: data:application/javascript,success=true;');
+?&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachedisableexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/http/tests/cache/disk-cache-disable-expected.txt (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache-disable-expected.txt        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/http/tests/cache/disk-cache-disable-expected.txt        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,21 +0,0 @@
</span><del>-Test that disabling disk cache by setting the cache model works.
-
-On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
-
-
-Default (cache enabled)
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
-response source: Disk cache
-
-Disabling cache
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
-response source: Network
-
-Re-enabling cache
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
-response source: Disk cache
-
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
</del></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachedisablehtml"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/http/tests/cache/disk-cache-disable.html (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache-disable.html        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/http/tests/cache/disk-cache-disable.html        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,25 +0,0 @@
</span><del>-&lt;script src=&quot;/js-test-resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
-&lt;script src=&quot;resources/cache-test.js&quot;&gt;&lt;/script&gt;
-&lt;body&gt;
-&lt;script&gt;
-
-var tests =
-[
-  { responseHeaders: {'Cache-control': 'max-age=100' } },
-];
-
-description(&quot;Test that disabling disk cache by setting the cache model works.&quot;);
-
-debug(&quot;Default (cache enabled)&quot;);
-runTests(tests, function () {
-    debug(&quot;Disabling cache&quot;);
-    testRunner.setCacheModel(0); // DocumentViewer
-    runTests(tests, function () {
-         debug(&quot;Re-enabling cache&quot;);
-         testRunner.setCacheModel(1); // DocumentBrowser
-         runTests(tests);
-    });
-});
-
-&lt;/script&gt;
-&lt;script src=&quot;/js-test-resources/js-test-post.js&quot;&gt;&lt;/script&gt;
</del></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcacheredirecttodataexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/http/tests/cache/disk-cache-redirect-to-data-expected.txt (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache-redirect-to-data-expected.txt        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/http/tests/cache/disk-cache-redirect-to-data-expected.txt        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,10 +0,0 @@
</span><del>-Test that HTTP redirect to a data URL does not crash or assert in the network process.
-
-On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
-
-
-PASS success is true
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
</del></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcacheredirecttodatahtml"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/http/tests/cache/disk-cache-redirect-to-data.html (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache-redirect-to-data.html        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/http/tests/cache/disk-cache-redirect-to-data.html        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,7 +0,0 @@
</span><del>-&lt;script src=&quot;/js-test-resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
-&lt;script src=resources/redirect-to-data.php&gt;&lt;/script&gt;
-&lt;script&gt;
-description(&quot;Test that HTTP redirect to a data URL does not crash or assert in the network process.&quot;);
-shouldBeTrue(&quot;success&quot;);
-&lt;/script&gt;
-&lt;script src=&quot;/js-test-resources/js-test-post.js&quot;&gt;&lt;/script&gt;
</del></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachevalidationbacknavigationpolicyexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/http/tests/cache/disk-cache-validation-back-navigation-policy-expected.txt (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache-validation-back-navigation-policy-expected.txt        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/http/tests/cache/disk-cache-validation-back-navigation-policy-expected.txt        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,173 +0,0 @@
</span><del>-Test permutations of various cache headers when using back navigation cache policy
-
-On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
-
-
-running 54 tests
-
-response headers: undefined
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;}
-response source: Disk cache
-
-response headers: {&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;must-revalidate&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, must-revalidate&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, must-revalidate&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store, must-revalidate&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store, must-revalidate&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store, must-revalidate&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache, must-revalidate&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache, must-revalidate&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache, must-revalidate&quot;}
-response source: Disk cache
-
-response headers: {&quot;ETag&quot;:&quot;match&quot;,&quot;Cache-control&quot;:&quot;must-revalidate&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache, must-revalidate&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Cache-control&quot;:&quot;must-revalidate&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache, must-revalidate&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
</del></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachevalidationbacknavigationpolicyhtml"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/http/tests/cache/disk-cache-validation-back-navigation-policy.html (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache-validation-back-navigation-policy.html        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/http/tests/cache/disk-cache-validation-back-navigation-policy.html        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,42 +0,0 @@
</span><del>-&lt;script src=&quot;/js-test-resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
-&lt;script src=&quot;resources/cache-test.js&quot;&gt;&lt;/script&gt;
-&lt;body&gt;
-&lt;script&gt;
-
-var testMatrix =
-[
- [
-  {},
-  { responseHeaders: {'Cache-control': 'max-age=0' } },
-  { responseHeaders: {'Cache-control': 'max-age=100' } },
-  ],
- [
-  {},
-  { responseHeaders: {'Cache-control': 'no-store' } },
-  { responseHeaders: {'Cache-control': 'no-cache' } },
-  ],
- [
-  {},
-  { responseHeaders: {'ETag': 'match' } },
-  { responseHeaders: {'ETag': 'nomatch' } },
-  ],
- [
-  {},
-  { responseHeaders: {'Cache-control': 'must-revalidate' } },
-  ],
- ];
-
-description(&quot;Test permutations of various cache headers when using back navigation cache policy&quot;);
-
-// Simulate cache behavior on back navigation.
-internals.setOverrideCachePolicy(&quot;ReturnCacheDataElseLoad&quot;);
-
-var tests = generateTests(testMatrix);
-
-debug(&quot;running &quot; + tests.length + &quot; tests&quot;);
-debug(&quot;&quot;);
-
-runTests(tests);
-
-&lt;/script&gt;
-&lt;script src=&quot;/js-test-resources/js-test-post.js&quot;&gt;&lt;/script&gt;
</del></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachevalidationexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/http/tests/cache/disk-cache-validation-expected.txt (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache-validation-expected.txt        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/http/tests/cache/disk-cache-validation-expected.txt        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,902 +0,0 @@
</span><del>-Test permutations of various cache headers
-
-On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
-
-
-running 243 tests
-
-response headers: undefined
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
-response source: Disk cache
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;}
-response source: Disk cache
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;}
-response source: Network
-
-response headers: {&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;}
-response source: Network
-
-response headers: {&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache after validation
-
-response headers: {&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Disk cache
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;en&quot;}
-response source: Network
-
-response headers: {&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;match&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-store&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-store&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(0)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(0)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Expires&quot;:&quot;now(100)&quot;,&quot;Cache-control&quot;:&quot;no-cache&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=0, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100, no-cache&quot;,&quot;Expires&quot;:&quot;now(100)&quot;,&quot;ETag&quot;:&quot;nomatch&quot;,&quot;Vary&quot;:&quot;Accept-Language&quot;}
-request headers: {&quot;Accept-Language&quot;:&quot;unique()&quot;}
-response source: Network
-
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
</del></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachevalidationhtml"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/http/tests/cache/disk-cache-validation.html (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache-validation.html        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/http/tests/cache/disk-cache-validation.html        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,45 +0,0 @@
</span><del>-&lt;script src=&quot;/js-test-resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
-&lt;script src=&quot;resources/cache-test.js&quot;&gt;&lt;/script&gt;
-&lt;body&gt;
-&lt;script&gt;
-
-var testMatrix =
-[
- [
-  {},
-  { responseHeaders: {'Cache-control': 'max-age=0' } },
-  { responseHeaders: {'Cache-control': 'max-age=100' } },
-  ],
- [
-  {},
-  { responseHeaders: {'Expires': 'now(0)' } },
-  { responseHeaders: {'Expires': 'now(100)' } },
-  ],
- [
-  {},
-  { responseHeaders: {'Cache-control': 'no-store' } },
-  { responseHeaders: {'Cache-control': 'no-cache' } },
-  ],
- [
-  {},
-  { responseHeaders: {'ETag': 'match' } },
-  { responseHeaders: {'ETag': 'nomatch' } },
-  ],
- [
-  {},
-  { responseHeaders: {'Vary': 'Accept-Language' }, requestHeaders: { 'Accept-Language': 'en' } },
-  { responseHeaders: {'Vary': 'Accept-Language' }, requestHeaders: { 'Accept-Language': 'unique()' } },
-  ],
- ];
-
-description(&quot;Test permutations of various cache headers&quot;);
-
-var tests = generateTests(testMatrix);
-
-debug(&quot;running &quot; + tests.length + &quot; tests&quot;);
-debug(&quot;&quot;);
-
-runTests(tests);
-
-&lt;/script&gt;
-&lt;script src=&quot;/js-test-resources/js-test-post.js&quot;&gt;&lt;/script&gt;
</del></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachevarycookieexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/http/tests/cache/disk-cache-vary-cookie-expected.txt (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache-vary-cookie-expected.txt        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/http/tests/cache/disk-cache-vary-cookie-expected.txt        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,37 +0,0 @@
</span><del>-Test that Vary: Cookie in response is handled by the disk cache.
-
-On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
-
-
-Setting cookie and loading
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
-response source: Network
-
-response headers: {&quot;Vary&quot;:&quot;Cookie&quot;,&quot;Cache-control&quot;:&quot;max-age=100&quot;}
-response source: Network
-
-Loading again
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
-response source: Disk cache
-
-response headers: {&quot;Vary&quot;:&quot;Cookie&quot;,&quot;Cache-control&quot;:&quot;max-age=100&quot;}
-response source: Disk cache
-
-Changing cookie and loading
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
-response source: Disk cache
-
-response headers: {&quot;Vary&quot;:&quot;Cookie&quot;,&quot;Cache-control&quot;:&quot;max-age=100&quot;}
-response source: Network
-
-Loading again
-response headers: {&quot;Cache-control&quot;:&quot;max-age=100&quot;}
-response source: Disk cache
-
-response headers: {&quot;Vary&quot;:&quot;Cookie&quot;,&quot;Cache-control&quot;:&quot;max-age=100&quot;}
-response source: Disk cache
-
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
</del></span></pre></div>
<a id="trunkLayoutTestshttptestscachediskcachevarycookiehtml"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/http/tests/cache/disk-cache-vary-cookie.html (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/disk-cache-vary-cookie.html        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/http/tests/cache/disk-cache-vary-cookie.html        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,38 +0,0 @@
</span><del>-&lt;script src=&quot;/js-test-resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
-&lt;script src=&quot;resources/cache-test.js&quot;&gt;&lt;/script&gt;
-&lt;body&gt;
-&lt;script&gt;
-
-var tests =
-[
-  { responseHeaders: {'Cache-control': 'max-age=100'} },
-  { responseHeaders: {'Vary': 'Cookie', 'Cache-control': 'max-age=100'} },
-];
-
-description(&quot;Test that Vary: Cookie in response is handled by the disk cache.&quot;);
-
-debug(&quot;Setting cookie and loading&quot;);
-document.cookie = &quot;cookie=value&quot;;
-loadResources(tests, function () {
-    printResults(tests);
-    internals.clearMemoryCache();
-    debug(&quot;Loading again&quot;);
-    loadResources(tests, function () {
-        printResults(tests);
-        internals.clearMemoryCache();
-        debug(&quot;Changing cookie and loading&quot;);
-        document.cookie = &quot;cookie=othervalue&quot;;
-        loadResources(tests, function () {
-            printResults(tests);
-            internals.clearMemoryCache()
-            debug(&quot;Loading again&quot;);
-            loadResources(tests, function () {
-               printResults(tests);
-               finishJSTest();
-            });
-        });
-    });
-});
-
-&lt;/script&gt;
-&lt;script src=&quot;/js-test-resources/js-test-post.js&quot;&gt;&lt;/script&gt;
</del></span></pre></div>
<a id="trunkLayoutTestshttptestscacheresourcescachetestjs"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/http/tests/cache/resources/cache-test.js (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/resources/cache-test.js        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/http/tests/cache/resources/cache-test.js        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,144 +0,0 @@
</span><del>-window.jsTestIsAsync = true;
-
-if (location.protocol != &quot;http:&quot; || location.host != &quot;127.0.0.1:8000&quot;) {
-    testFailed(&quot;This test must be run from http://127.0.0.1:8000&quot;);
-    finishJSTest();
-}
-
-if (!window.internals) {
-    testFailed(&quot;This test requires window.internals&quot;);
-    finishJSTest();
-}
-
-function getServerDate()
-{
-    var req = new XMLHttpRequest();
-    var t0 = new Date().getTime();
-    req.open('GET', &quot;/cache/resources/current-time.cgi&quot;, false /* blocking */);
-    req.send();
-    var serverToClientTime = (new Date().getTime() - t0) / 2;
-    if (req.status != 200) {
-        console.log(&quot;unexpected status code &quot; + req.status + &quot;, expected 200.&quot;);
-        return new Date();
-    }
-    return new Date((parseInt(req.responseText) * 1000) + serverToClientTime);
-}
-
-var serverClientTimeDelta = getServerDate().getTime() - new Date().getTime();
-
-var uniqueIdCounter = 0;
-function makeHeaderValue(value)
-{
-    if (value == 'now(0)')
-        return (new Date(new Date().getTime() + serverClientTimeDelta)).toUTCString();
-    if (value == 'now(100)')
-        return (new Date(new Date().getTime() + serverClientTimeDelta + 100 * 1000)).toUTCString();
-    if (value == 'unique()')
-        return &quot;&quot; + uniqueIdCounter++;
-    return value;
-}
-
-function generateTestURL(test)
-{
-    var uniqueTestId = Math.floor((Math.random() * 1000000000000));
-    var testURL = &quot;resources/generate-response.cgi?uniqueId=&quot; + uniqueTestId++ + &quot;&amp;Content-type=text/plain&quot;;
-    for (var header in test.responseHeaders)
-        testURL += '&amp;' + header + '=' + makeHeaderValue(test.responseHeaders[header]);
-    return testURL;
-}
-
-function loadResource(test, onload)
-{
-    if (!test.url)
-        test.url = generateTestURL(test);
-
-    test.xhr = new XMLHttpRequest();
-    test.xhr.onload = onload;
-    test.xhr.open(&quot;get&quot;, test.url, true);
-
-    for (var header in test.requestHeaders)
-        test.xhr.setRequestHeader(header, makeHeaderValue(test.requestHeaders[header]));
-
-    test.xhr.send();
-}
-
-function loadResources(tests, completetion)
-{
-    var pendingCount = tests.length;
-    for (var i = 0; i &lt; tests.length; ++i) {
-        loadResource(tests[i], function (ev) {
-            --pendingCount;
-            if (!pendingCount)
-                completetion();
-         });
-    }
-}
-
-function printResults(tests)
-{
-    for (var i = 0; i &lt; tests.length; ++i) {
-        var test = tests[i];
-        debug(&quot;response headers: &quot; + JSON.stringify(test.responseHeaders));
-        if (test.requestHeaders)
-            debug(&quot;request headers: &quot; + JSON.stringify(test.requestHeaders));
-        responseSource = internals.xhrResponseSource(test.xhr);
-        debug(&quot;response source: &quot; + responseSource);
-        debug(&quot;&quot;);
-    }
-}
-
-function runTests(tests, completionHandler)
-{
-    loadResources(tests, function () {
-        // Otherwise we just get responses from the memory cache.
-        internals.clearMemoryCache();
-        // Wait a bit so things settle down in the disk cache.
-        setTimeout(function () {
-            loadResources(tests, function () {
-                printResults(tests);
-                if (completionHandler)
-                    completionHandler();
-                else
-                    finishJSTest();
-            });
-        }, 100);
-    });
-}
-
-function mergeFields(field, componentField)
-{
-    for (var name in componentField) {
-        if (field[name])
-            field[name] += &quot;, &quot; + componentField[name];
-        else
-            field[name] = componentField[name];
-    }
-}
-
-function generateTests(testMatrix)
-{
-    var tests = [];
-
-    var testCount = 1;
-    for (var i = 0; i &lt; testMatrix.length; ++i)
-        testCount *= testMatrix[i].length;
-
-    for (var testNumber = 0; testNumber &lt; testCount; ++testNumber) {
-        var test = {}
-
-        var index = testNumber;
-        for (var i = 0; i &lt; testMatrix.length; ++i) {
-            var components = testMatrix[i];
-            var component = components[index % components.length];
-            index = Math.floor(index / components.length);
-
-            for (var field in component) {
-                if (!test[field])
-                    test[field] = {}
-                mergeFields(test[field], component[field]);
-            }
-        }
-        tests.push(test);
-    }
-    return tests;
-}
</del></span></pre></div>
<a id="trunkLayoutTestshttptestscacheresourcesgenerateresponsecgi"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/http/tests/cache/resources/generate-response.cgi (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/resources/generate-response.cgi        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/http/tests/cache/resources/generate-response.cgi        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,18 +0,0 @@
</span><del>-#!/usr/bin/perl -w
-
-use CGI;
-use HTTP::Date;
-
-my $query = new CGI;
-@names = $query-&gt;param;
-
-if ($query-&gt;http &amp;&amp; $query-&gt;http(&quot;If-None-Match&quot;) eq &quot;match&quot;) {
-    print &quot;Status: 304\n&quot;;
-}
-
-foreach (@names) {
-    next if ($_ eq &quot;uniqueId&quot;);
-    print $_ . &quot;: &quot; . $query-&gt;param($_) . &quot;\n&quot;;
-}
-print &quot;\n&quot;;
-print &quot;test&quot;;
</del></span></pre></div>
<a id="trunkLayoutTestshttptestscacheresourcesredirecttodataphp"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/http/tests/cache/resources/redirect-to-data.php (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/cache/resources/redirect-to-data.php        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/http/tests/cache/resources/redirect-to-data.php        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,4 +0,0 @@
</span><del>-&lt;?
-header('Status: 301 Moved Permanently');
-header('Location: data:application/javascript,success=true;');
-?&gt;
</del></span></pre></div>
<a id="trunkLayoutTestsplatformeflTestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/efl/TestExpectations (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/TestExpectations        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/platform/efl/TestExpectations        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -2123,9 +2123,7 @@
</span><span class="cx"> webkit.org/b/141628 compositing/layer-creation/fixed-position-out-of-view-scaled.html [ Failure ]
</span><span class="cx"> 
</span><span class="cx"> # Disk cache isn't supported by EFL port yet.
</span><del>-webkit.org/b/141891 http/tests/cache/disk-cache-disable.html [ Failure ]
-webkit.org/b/141891 http/tests/cache/disk-cache-redirect-to-data.html [ Failure ]
-webkit.org/b/141891 http/tests/cache/disk-cache-validation.html [ Failure ]
</del><ins>+webkit.org/b/141891 http/tests/cache/disk-cache [ Skip ]
</ins><span class="cx"> 
</span><span class="cx"> webkit.org/b/141892 fast/sub-pixel/client-width-height-snapping.html [ Failure ]
</span><span class="cx"> webkit.org/b/141892 fast/sub-pixel/inline-block-with-padding.html [ Failure ]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformgtkTestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/gtk/TestExpectations (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/gtk/TestExpectations        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/platform/gtk/TestExpectations        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -496,6 +496,9 @@
</span><span class="cx"> webkit.org/b/128172 fast/events/touch/touch-target-limited.html [ Crash Timeout ]
</span><span class="cx"> webkit.org/b/128172 fast/events/touch/send-oncancel-event.html [ Timeout ]
</span><span class="cx"> 
</span><ins>+# The WebKit network disk cache is not enabled on the GTK port.
+webkit.org/b/142821 http/tests/cache/disk-cache [ Skip ]
+
</ins><span class="cx"> # HighDPI support is not enabled
</span><span class="cx"> webkit.org/b/131347 fast/backgrounds/hidpi-background-image-contain-cover-scale-needs-more-precision.html [ ImageOnlyFailure ]
</span><span class="cx"> webkit.org/b/131347 fast/backgrounds/hidpi-bitmap-background-repeat-on-subpixel-position.html [ ImageOnlyFailure ]
</span><span class="lines">@@ -571,8 +574,6 @@
</span><span class="cx"> webkit.org/b/141700 fast/dom/Element/getClientRects.html [ Failure ]
</span><span class="cx"> webkit.org/b/141700 fast/dom/Range/getClientRects.html [ Failure ]
</span><span class="cx"> 
</span><del>-webkit.org/b/141702 http/tests/cache/disk-cache-disable.html [ Failure ]
-webkit.org/b/141703 http/tests/cache/disk-cache-redirect-to-data.html [ Failure ]
</del><span class="cx"> webkit.org/b/141705 media/video-fullscreeen-only-controls.html [ Failure ]
</span><span class="cx"> webkit.org/b/141706 fast/forms/color/input-appearance-color.html [ Failure ]
</span><span class="cx"> webkit.org/b/141709 http/tests/security/XFrameOptions/x-frame-options-deny-multiple-clients.html [ Failure ]
</span><span class="lines">@@ -621,7 +622,6 @@
</span><span class="cx"> 
</span><span class="cx"> webkit.org/b/141074 accessibility/auto-filled-value.html [ Missing ]
</span><span class="cx"> 
</span><del>-webkit.org/b/142818 http/tests/cache/disk-cache-vary-cookie.html [ Failure ]
</del><span class="cx"> webkit.org/b/142819 fast/text/baseline-inline-block.html [ ImageOnlyFailure ]
</span><span class="cx"> 
</span><span class="cx"> webkit.org/b/142823 fast/attachment/attachment-progress.html [ Missing ]
</span><span class="lines">@@ -1321,7 +1321,6 @@
</span><span class="cx"> 
</span><span class="cx"> webkit.org/b/142670 media/video-background-tab-playback.html [ Timeout ]
</span><span class="cx"> webkit.org/b/142820 fast/images/animated-gif-body-outside-viewport.html [ Timeout ]
</span><del>-webkit.org/b/142821 http/tests/cache/disk-cache-validation.html [ Timeout ]
</del><span class="cx"> 
</span><span class="cx"> #////////////////////////////////////////////////////////////////////////////////////////
</span><span class="cx"> # End of Tests timing out
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacwk1TestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac-wk1/TestExpectations (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac-wk1/TestExpectations        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/platform/mac-wk1/TestExpectations        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -92,10 +92,7 @@
</span><span class="cx"> compositing/iframes/overlapped-nested-iframes.html [ Pass Failure ]
</span><span class="cx"> 
</span><span class="cx"> # Disk cache is WK2 only
</span><del>-http/tests/cache/disk-cache-validation.html
-http/tests/cache/disk-cache-validation-back-navigation-policy.html
-http/tests/cache/disk-cache-disable.html
-http/tests/cache/disk-cache-vary-cookie.html
</del><ins>+http/tests/cache/disk-cache
</ins><span class="cx"> 
</span><span class="cx"> ### END OF (2) Failures without bug reports
</span><span class="cx"> ########################################
</span></span></pre></div>
<a id="trunkLayoutTestsplatformwinTestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/win/TestExpectations (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/win/TestExpectations        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/LayoutTests/platform/win/TestExpectations        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -2226,10 +2226,7 @@
</span><span class="cx"> webkit.org/b/60206 http/tests/navigation/response204.html [ Failure ]
</span><span class="cx"> 
</span><span class="cx"> # Disk cache is WK2 only
</span><del>-http/tests/cache/disk-cache-validation.html
-http/tests/cache/disk-cache-validation-back-navigation-policy.html
-http/tests/cache/disk-cache-disable.html
-http/tests/cache/disk-cache-vary-cookie.html
</del><ins>+http/tests/cache/disk-cache
</ins><span class="cx"> 
</span><span class="cx"> # The following are unreviewed:
</span><span class="cx"> http/tests/cache/content-type-ignored-during-revalidation.html [ Failure ]
</span></span></pre></div>
<a id="trunkSourceWebKit2ChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/ChangeLog (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/ChangeLog        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/Source/WebKit2/ChangeLog        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -1,3 +1,29 @@
</span><ins>+2015-03-24  Chris Dumez  &lt;cdumez@apple.com&gt;
+
+        [WK2] The WebKit network cache does not cache responses with &quot;Content-Disposition: attachment&quot; header
+        https://bugs.webkit.org/show_bug.cgi?id=142989
+        &lt;rdar://problem/20265992&gt;
+
+        Reviewed by Antti Koivisto.
+
+        Update our WebKit network cache policy to cache responses with
+        &quot;Content-Disposition: attachment&quot; header. There is no reason we cannot
+        cache these and our memory cache already does.
+
+        This was causing a decent amount of cache misses in the wild. I have
+        noticed for example that when loading disney.com, we fail to cache the
+        following resources because of this policy:
+        http://pagead2.googlesyndication.com/pagead/osd.js
+        http://pagead2.googlesyndication.com/pagead/show_companion_ad.js
+
+        Those resources have Cache-Control headers that indicate they are meant
+        to be cacheable.
+
+        Test: http/tests/cache/disk-cache-validation-attachment.html
+
+        * NetworkProcess/cache/NetworkCache.cpp:
+        (WebKit::NetworkCache::canStore):
+
</ins><span class="cx"> 2015-03-23  Joseph Pecoraro  &lt;pecoraro@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Unreviewed, another attempt to fix 32-bit build after r181881.
</span></span></pre></div>
<a id="trunkSourceWebKit2NetworkProcesscacheNetworkCachecpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/NetworkProcess/cache/NetworkCache.cpp (181893 => 181894)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/NetworkProcess/cache/NetworkCache.cpp        2015-03-24 15:18:21 UTC (rev 181893)
+++ trunk/Source/WebKit2/NetworkProcess/cache/NetworkCache.cpp        2015-03-24 16:44:19 UTC (rev 181894)
</span><span class="lines">@@ -317,10 +317,6 @@
</span><span class="cx">         LOG(NetworkCache, &quot;(NetworkProcess) method %s&quot;, originalRequest.httpMethod().utf8().data());
</span><span class="cx">         return StoreDecision::NoDueToHTTPMethod;
</span><span class="cx">     }
</span><del>-    if (response.isAttachment()) {
-        LOG(NetworkCache, &quot;(NetworkProcess) attachment&quot;);
-        return StoreDecision::NoDueToAttachmentResponse;
-    }
</del><span class="cx"> 
</span><span class="cx">     switch (response.httpStatusCode()) {
</span><span class="cx">     case 200: // OK
</span></span></pre>
</div>
</div>

</body>
</html>