<!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>[199225] 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/199225">199225</a></dd>
<dt>Author</dt> <dd>youenn.fablet@crf.canon.fr</dd>
<dt>Date</dt> <dd>2016-04-08 07:45:24 -0700 (Fri, 08 Apr 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>LayoutTests/imported/w3c:
Testharness-based tests that time out should be able to produce detailed output
https://bugs.webkit.org/show_bug.cgi?id=145313

Reviewed by Xabier Rodriguez-Calvar.

Rebasing tests that produce output after testharness timeout() is called.

* web-platform-tests/fetch/api/request/request-cache-expected.txt:
* web-platform-tests/html/semantics/document-metadata/the-link-element/link-style-error-01-expected.txt:
* web-platform-tests/html/semantics/document-metadata/the-style-element/style-error-01-expected.txt:
* web-platform-tests/html/semantics/embedded-content/the-img-element/environment-changes/viewport-change-expected.txt:

Tools:
Testharness-based tests that time out should be able to produce a detailed output
https://bugs.webkit.org/show_bug.cgi?id=145313

Reviewed by Xabier Rodriguez-Calvar.

Adding timeout readonly accessor to TestRunner for both WK1 and WK2.

* DumpRenderTree/TestRunner.cpp:
(getTimeoutCallback): The js &quot;timeout&quot; property getter.
(TestRunner::staticValues): Adding &quot;timeout&quot; property to DumpRenderTree so that testRunner.timeout called from JS returns the timeout value.
* DumpRenderTree/TestRunner.h:
(TestRunner::timeout): Adding access to DRT m_timeout private value.
* WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl: Adding timeout readonly attribute so that testRunner.timeout can be called from JS.
* WebKitTestRunner/InjectedBundle/TestRunner.h: Adding DOM timeout getter to implement timeout IDL definition.
(WTR::TestRunner::timeout):

LayoutTests:
Testharness-based tests that time out should be able to produce a detailled output
https://bugs.webkit.org/show_bug.cgi?id=145313

Reviewed by Xabier Rodriguez-Calvar.

* TestExpectations: Removed TIMEOUT for some tests for which testharness.timeout will be called just before WTR times out.
* platform/gtk/imported/w3c/web-platform-tests/fetch/api/request/request-cache-expected.txt: GTK specific baseline.
* resources/testharnessreport.js:
(add_completion_callback): Improving error logging message. Dumping of the tests status in error case.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkLayoutTestsTestExpectations">trunk/LayoutTests/TestExpectations</a></li>
<li><a href="#trunkLayoutTestsimportedw3cChangeLog">trunk/LayoutTests/imported/w3c/ChangeLog</a></li>
<li><a href="#trunkLayoutTestsimportedw3cwebplatformtestsfetchapirequestrequestcacheexpectedtxt">trunk/LayoutTests/imported/w3c/web-platform-tests/fetch/api/request/request-cache-expected.txt</a></li>
<li><a href="#trunkLayoutTestsimportedw3cwebplatformtestshtmlsemanticsdocumentmetadatathelinkelementlinkstyleerror01expectedtxt">trunk/LayoutTests/imported/w3c/web-platform-tests/html/semantics/document-metadata/the-link-element/link-style-error-01-expected.txt</a></li>
<li><a href="#trunkLayoutTestsimportedw3cwebplatformtestshtmlsemanticsdocumentmetadatathestyleelementstyleerror01expectedtxt">trunk/LayoutTests/imported/w3c/web-platform-tests/html/semantics/document-metadata/the-style-element/style-error-01-expected.txt</a></li>
<li><a href="#trunkLayoutTestsimportedw3cwebplatformtestshtmlsemanticsembeddedcontenttheimgelementenvironmentchangesviewportchangeexpectedtxt">trunk/LayoutTests/imported/w3c/web-platform-tests/html/semantics/embedded-content/the-img-element/environment-changes/viewport-change-expected.txt</a></li>
<li><a href="#trunkLayoutTestsresourcestestharnessreportjs">trunk/LayoutTests/resources/testharnessreport.js</a></li>
<li><a href="#trunkToolsChangeLog">trunk/Tools/ChangeLog</a></li>
<li><a href="#trunkToolsDumpRenderTreeTestRunnercpp">trunk/Tools/DumpRenderTree/TestRunner.cpp</a></li>
<li><a href="#trunkToolsDumpRenderTreeTestRunnerh">trunk/Tools/DumpRenderTree/TestRunner.h</a></li>
<li><a href="#trunkToolsWebKitTestRunnerInjectedBundleBindingsTestRunneridl">trunk/Tools/WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl</a></li>
<li><a href="#trunkToolsWebKitTestRunnerInjectedBundleTestRunnerh">trunk/Tools/WebKitTestRunner/InjectedBundle/TestRunner.h</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li>trunk/LayoutTests/platform/gtk/imported/w3c/web-platform-tests/fetch/api/request/</li>
<li><a href="#trunkLayoutTestsplatformgtkimportedw3cwebplatformtestsfetchapirequestrequestcacheexpectedtxt">trunk/LayoutTests/platform/gtk/imported/w3c/web-platform-tests/fetch/api/request/request-cache-expected.txt</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (199224 => 199225)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2016-04-08 09:04:17 UTC (rev 199224)
+++ trunk/LayoutTests/ChangeLog        2016-04-08 14:45:24 UTC (rev 199225)
</span><span class="lines">@@ -1,3 +1,15 @@
</span><ins>+2016-04-08  Youenn Fablet  &lt;youenn.fablet@crf.canon.fr&gt;
+
+        Testharness-based tests that time out should be able to produce a detailled output
+        https://bugs.webkit.org/show_bug.cgi?id=145313
+
+        Reviewed by Xabier Rodriguez-Calvar.
+
+        * TestExpectations: Removed TIMEOUT for some tests for which testharness.timeout will be called just before WTR times out.
+        * platform/gtk/imported/w3c/web-platform-tests/fetch/api/request/request-cache-expected.txt: GTK specific baseline.
+        * resources/testharnessreport.js:
+        (add_completion_callback): Improving error logging message. Dumping of the tests status in error case.
+
</ins><span class="cx"> 2016-04-08  Manuel Rego Casasnovas  &lt;rego@igalia.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [css-grid] Fix positioned items with grid gaps
</span></span></pre></div>
<a id="trunkLayoutTestsTestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/TestExpectations (199224 => 199225)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/TestExpectations        2016-04-08 09:04:17 UTC (rev 199224)
+++ trunk/LayoutTests/TestExpectations        2016-04-08 14:45:24 UTC (rev 199225)
</span><span class="lines">@@ -323,8 +323,6 @@
</span><span class="cx"> imported/w3c/web-platform-tests/XMLHttpRequest/send-redirect-to-cors.htm [ Skip ]
</span><span class="cx"> imported/w3c/web-platform-tests/XMLHttpRequest/send-redirect-to-non-cors.htm [ Skip ]
</span><span class="cx"> 
</span><del>-imported/w3c/web-platform-tests/fetch/api/request/request-cache.html [ Timeout ]
-
</del><span class="cx"> # New W3C ref tests that are failing.
</span><span class="cx"> webkit.org/b/148856 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-video-element/video_initially_paused.html [ ImageOnlyFailure ]
</span><span class="cx"> 
</span><span class="lines">@@ -387,12 +385,6 @@
</span><span class="cx"> imported/w3c/web-platform-tests/domparsing/DOMParser-parseFromString-html.html [ Pass Failure ]
</span><span class="cx"> imported/w3c/web-platform-tests/domparsing/insert-adjacent.html [ Pass Failure ]
</span><span class="cx"> 
</span><del>-# W3C html timing out tests
-imported/w3c/web-platform-tests/html/dom/dynamic-markup-insertion/opening-the-input-stream/010.html [ Failure Timeout ]
-imported/w3c/web-platform-tests/html/semantics/document-metadata/the-link-element/link-style-error-01.html [ Timeout ]
-imported/w3c/web-platform-tests/html/semantics/document-metadata/the-style-element/style-error-01.html [ Timeout ]
-imported/w3c/web-platform-tests/html/semantics/embedded-content/the-img-element/environment-changes/viewport-change.html [ Timeout ]
-
</del><span class="cx"> # Imported W3C canvas failed tests
</span><span class="cx"> webkit.org/b/138676 imported/w3c/canvas/2d.pattern.image.null.html [ Failure ]
</span><span class="cx"> webkit.org/b/138676 imported/w3c/canvas/2d.pattern.image.incomplete.omitted.html [ Failure ]
</span><span class="lines">@@ -509,6 +501,9 @@
</span><span class="cx"> imported/w3c/web-platform-tests/html/dom/elements/global-attributes/dir_auto-textarea-script-N-between-Rs.html [ ImageOnlyFailure ]
</span><span class="cx"> imported/w3c/web-platform-tests/html/dom/elements/global-attributes/style-01.html [ ImageOnlyFailure ]
</span><span class="cx"> 
</span><ins>+imported/w3c/web-platform-tests/html/dom/dynamic-markup-insertion/opening-the-input-stream/010.html [ Failure Timeout ]
+imported/w3c/web-platform-tests/html/semantics/embedded-content/the-img-element/environment-changes/viewport-change.html [ Failure ]
+
</ins><span class="cx"> # Imported Mozilla SVG tests
</span><span class="cx"> webkit.org/b/5968 imported/mozilla/svg/linearGradient-basic-03.svg [ ImageOnlyFailure ]
</span><span class="cx"> webkit.org/b/32177 imported/mozilla/svg/as-image/background-image-rect-1png.html [ ImageOnlyFailure ]
</span><span class="lines">@@ -1037,4 +1032,4 @@
</span><span class="cx"> webkit.org/b/156099 http/tests/security/anchor-download-allow-blob.html [ Failure ]
</span><span class="cx"> 
</span><span class="cx"> # &lt;a download&gt; does not honor cross-origin restrictions
</span><del>-webkit.org/b/156100 http/tests/security/anchor-download-block-crossorigin.html [ Failure ]
</del><span class="cx">\ No newline at end of file
</span><ins>+webkit.org/b/156100 http/tests/security/anchor-download-block-crossorigin.html [ Failure ]
</ins></span></pre></div>
<a id="trunkLayoutTestsimportedw3cChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/imported/w3c/ChangeLog (199224 => 199225)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/imported/w3c/ChangeLog        2016-04-08 09:04:17 UTC (rev 199224)
+++ trunk/LayoutTests/imported/w3c/ChangeLog        2016-04-08 14:45:24 UTC (rev 199225)
</span><span class="lines">@@ -1,3 +1,17 @@
</span><ins>+2016-04-08  Youenn Fablet  &lt;youenn.fablet@crf.canon.fr&gt;
+
+        Testharness-based tests that time out should be able to produce detailed output
+        https://bugs.webkit.org/show_bug.cgi?id=145313
+
+        Reviewed by Xabier Rodriguez-Calvar.
+
+        Rebasing tests that produce output after testharness timeout() is called.
+
+        * web-platform-tests/fetch/api/request/request-cache-expected.txt:
+        * web-platform-tests/html/semantics/document-metadata/the-link-element/link-style-error-01-expected.txt:
+        * web-platform-tests/html/semantics/document-metadata/the-style-element/style-error-01-expected.txt:
+        * web-platform-tests/html/semantics/embedded-content/the-img-element/environment-changes/viewport-change-expected.txt:
+
</ins><span class="cx"> 2016-03-31  Youenn Fablet  &lt;youenn.fablet@crf.canon.fr&gt;
</span><span class="cx"> 
</span><span class="cx">         [Fetch API] Add basic loading of resources for Workers
</span></span></pre></div>
<a id="trunkLayoutTestsimportedw3cwebplatformtestsfetchapirequestrequestcacheexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/fetch/api/request/request-cache-expected.txt (199224 => 199225)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/imported/w3c/web-platform-tests/fetch/api/request/request-cache-expected.txt        2016-04-08 09:04:17 UTC (rev 199224)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/fetch/api/request/request-cache-expected.txt        2016-04-08 14:45:24 UTC (rev 199225)
</span><span class="lines">@@ -1,2 +1,92 @@
</span><del>-FAIL: Timed out waiting for notifyDone to be called
</del><span class="cx"> 
</span><ins>+Harness Error (TIMEOUT), message = null
+
+FAIL RequestCache &quot;default&quot; mode checks the cache for previously cached content and goes to the network for stale responses with Etag and stale response assert_array_equals: property 0, expected 200 but got 500
+TIMEOUT RequestCache &quot;default&quot; mode checks the cache for previously cached content and goes to the network for stale responses with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode checks the cache for previously cached content and avoids going to the network if a fresh response exists with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode checks the cache for previously cached content and avoids going to the network if a fresh response exists with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;no-cache&quot; mode revalidates stale responses found in the cache with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;no-cache&quot; mode revalidates stale responses found in the cache with date and stale response Test timed out
+TIMEOUT RequestCache &quot;no-cache&quot; mode revalidates fresh responses found in the cache with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;no-cache&quot; mode revalidates fresh responses found in the cache with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and avoid revalidation for stale responses with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and avoid revalidation for stale responses with date and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and avoid revalidation for fresh responses with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and avoid revalidation for fresh responses with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response is not found with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response is not found with date and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response is not found with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response is not found with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response would vary with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response would vary with date and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response would vary with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response would vary with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; stores the response in the cache if it goes to the network with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; stores the response in the cache if it goes to the network with date and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; stores the response in the cache if it goes to the network with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; stores the response in the cache if it goes to the network with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not check the cache for previously cached content and goes to the network regardless with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not check the cache for previously cached content and goes to the network regardless with date and stale response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not check the cache for previously cached content and goes to the network regardless with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not check the cache for previously cached content and goes to the network regardless with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not store the response in the cache with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not store the response in the cache with date and stale response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not store the response in the cache with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not store the response in the cache with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT Responses with the &quot;Cache-Control: no-store&quot; header are not stored in the cache with Etag and stale response Test timed out
+TIMEOUT Responses with the &quot;Cache-Control: no-store&quot; header are not stored in the cache with date and stale response Test timed out
+TIMEOUT Responses with the &quot;Cache-Control: no-store&quot; header are not stored in the cache with Etag and fresh response Test timed out
+TIMEOUT Responses with the &quot;Cache-Control: no-store&quot; header are not stored in the cache with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does not check the cache for previously cached content and goes to the network regardless with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does not check the cache for previously cached content and goes to the network regardless with date and stale response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does not check the cache for previously cached content and goes to the network regardless with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does not check the cache for previously cached content and goes to the network regardless with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache with date and stale response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache even if a previous response is already stored with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache even if a previous response is already stored with date and stale response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache even if a previous response is already stored with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache even if a previous response is already stored with date and fresh response Test timed out
+
</ins></span></pre></div>
<a id="trunkLayoutTestsimportedw3cwebplatformtestshtmlsemanticsdocumentmetadatathelinkelementlinkstyleerror01expectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/html/semantics/document-metadata/the-link-element/link-style-error-01-expected.txt (199224 => 199225)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/imported/w3c/web-platform-tests/html/semantics/document-metadata/the-link-element/link-style-error-01-expected.txt        2016-04-08 09:04:17 UTC (rev 199224)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/html/semantics/document-metadata/the-link-element/link-style-error-01-expected.txt        2016-04-08 14:45:24 UTC (rev 199225)
</span><span class="lines">@@ -1,3 +1,6 @@
</span><span class="cx"> CONSOLE MESSAGE: Did not parse stylesheet at 'http://localhost:8800/common/css-red.txt' because non CSS MIME types are not allowed in strict mode.
</span><del>-FAIL: Timed out waiting for notifyDone to be called
</del><span class="cx"> 
</span><ins>+Harness Error (TIMEOUT), message = null
+
+TIMEOUT Should get an error event for a text/plain response. Test timed out
+
</ins></span></pre></div>
<a id="trunkLayoutTestsimportedw3cwebplatformtestshtmlsemanticsdocumentmetadatathestyleelementstyleerror01expectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/html/semantics/document-metadata/the-style-element/style-error-01-expected.txt (199224 => 199225)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/imported/w3c/web-platform-tests/html/semantics/document-metadata/the-style-element/style-error-01-expected.txt        2016-04-08 09:04:17 UTC (rev 199224)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/html/semantics/document-metadata/the-style-element/style-error-01-expected.txt        2016-04-08 14:45:24 UTC (rev 199225)
</span><span class="lines">@@ -1,3 +1,6 @@
</span><span class="cx"> CONSOLE MESSAGE: Did not parse stylesheet at 'http://localhost:8800/common/css-red.txt' because non CSS MIME types are not allowed in strict mode.
</span><del>-FAIL: Timed out waiting for notifyDone to be called
</del><span class="cx"> 
</span><ins>+Harness Error (TIMEOUT), message = null
+
+TIMEOUT Should get an error event for a text/plain response. Test timed out
+
</ins></span></pre></div>
<a id="trunkLayoutTestsimportedw3cwebplatformtestshtmlsemanticsembeddedcontenttheimgelementenvironmentchangesviewportchangeexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/imported/w3c/web-platform-tests/html/semantics/embedded-content/the-img-element/environment-changes/viewport-change-expected.txt (199224 => 199225)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/imported/w3c/web-platform-tests/html/semantics/embedded-content/the-img-element/environment-changes/viewport-change-expected.txt        2016-04-08 09:04:17 UTC (rev 199224)
+++ trunk/LayoutTests/imported/w3c/web-platform-tests/html/semantics/embedded-content/the-img-element/environment-changes/viewport-change-expected.txt        2016-04-08 14:45:24 UTC (rev 199225)
</span><span class="lines">@@ -1,2 +1,47 @@
</span><del>-FAIL: Timed out waiting for notifyDone to be called
</del><span class="cx"> 
</span><ins>+
+PASS img (no src), onload, narrow 
+PASS img (no src), resize to wide 
+FAIL img (empty src), onload, narrow assert_equals: expected &quot;&quot; but got &quot;http://localhost:8800/html/semantics/embedded-content/the-img-element/environment-changes/iframed.sub.html?id=02edf22a-03f6-44d2-9b5e-417f19c0040d&quot;
+PASS img (empty src), resize to wide 
+PASS img (src only) broken image, onload, narrow 
+PASS img (src only) broken image, resize to wide 
+PASS img (src only) valid image, onload, narrow 
+PASS img (src only) valid image, resize to wide 
+PASS img (srcset 1 cand) broken image, onload, narrow 
+PASS img (srcset 1 cand) broken image, resize to wide 
+PASS img (srcset 1 cand) valid image, onload, narrow 
+PASS img (srcset 1 cand) valid image, resize to wide 
+PASS picture: source (max-width:500px) broken image, img broken image, onload, narrow 
+PASS picture: source (max-width:500px) broken image, img broken image, resize to wide 
+PASS picture: source (max-width:500px) broken image, img valid image, onload, narrow 
+PASS picture: source (max-width:500px) broken image, img valid image, resize to wide 
+PASS picture: source (max-width:500px) valid image, img broken image, onload, narrow 
+PASS picture: source (max-width:500px) valid image, img broken image, resize to wide 
+PASS picture: source (max-width:500px) valid image, img valid image, onload, narrow 
+PASS picture: source (max-width:500px) valid image, img valid image, resize to wide 
+PASS picture: same URL in source (max-width:500px) and img, onload, narrow 
+FAIL picture: same URL in source (max-width:500px) and img, resize to wide assert_unreached: Got unexpected load event Reached unreachable code
+PASS img (no src), onload, wide 
+PASS img (no src), resize to narrow 
+FAIL img (empty src), onload, wide assert_equals: expected &quot;&quot; but got &quot;http://localhost:8800/html/semantics/embedded-content/the-img-element/environment-changes/iframed.sub.html?id=f0ecd3f6-a6df-40ac-8630-4b09c34db93a&quot;
+PASS img (empty src), resize to narrow 
+PASS img (src only) broken image, onload, wide 
+PASS img (src only) broken image, resize to narrow 
+PASS img (src only) valid image, onload, wide 
+PASS img (src only) valid image, resize to narrow 
+PASS img (srcset 1 cand) broken image, onload, wide 
+PASS img (srcset 1 cand) broken image, resize to narrow 
+PASS img (srcset 1 cand) valid image, onload, wide 
+PASS img (srcset 1 cand) valid image, resize to narrow 
+PASS picture: source (max-width:500px) broken image, img broken image, onload, wide 
+PASS picture: source (max-width:500px) broken image, img broken image, resize to narrow 
+PASS picture: source (max-width:500px) broken image, img valid image, onload, wide 
+PASS picture: source (max-width:500px) broken image, img valid image, resize to narrow 
+PASS picture: source (max-width:500px) valid image, img broken image, onload, wide 
+PASS picture: source (max-width:500px) valid image, img broken image, resize to narrow 
+PASS picture: source (max-width:500px) valid image, img valid image, onload, wide 
+PASS picture: source (max-width:500px) valid image, img valid image, resize to narrow 
+PASS picture: same URL in source (max-width:500px) and img, onload, wide 
+FAIL picture: same URL in source (max-width:500px) and img, resize to narrow assert_unreached: Got unexpected load event Reached unreachable code
+
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformgtkimportedw3cwebplatformtestsfetchapirequestrequestcacheexpectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/gtk/imported/w3c/web-platform-tests/fetch/api/request/request-cache-expected.txt (0 => 199225)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/gtk/imported/w3c/web-platform-tests/fetch/api/request/request-cache-expected.txt                                (rev 0)
+++ trunk/LayoutTests/platform/gtk/imported/w3c/web-platform-tests/fetch/api/request/request-cache-expected.txt        2016-04-08 14:45:24 UTC (rev 199225)
</span><span class="lines">@@ -0,0 +1,92 @@
</span><ins>+
+Harness Error (TIMEOUT), message = null
+
+TIMEOUT RequestCache &quot;default&quot; mode checks the cache for previously cached content and goes to the network for stale responses with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode checks the cache for previously cached content and goes to the network for stale responses with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode checks the cache for previously cached content and avoids going to the network if a fresh response exists with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode checks the cache for previously cached content and avoids going to the network if a fresh response exists with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;no-cache&quot; mode revalidates stale responses found in the cache with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;no-cache&quot; mode revalidates stale responses found in the cache with date and stale response Test timed out
+TIMEOUT RequestCache &quot;no-cache&quot; mode revalidates fresh responses found in the cache with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;no-cache&quot; mode revalidates fresh responses found in the cache with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and avoid revalidation for stale responses with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and avoid revalidation for stale responses with date and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and avoid revalidation for fresh responses with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and avoid revalidation for fresh responses with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response is not found with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response is not found with date and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response is not found with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response is not found with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response would vary with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response would vary with date and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response would vary with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; mode checks the cache for previously cached content and goes to the network if a cached response would vary with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; stores the response in the cache if it goes to the network with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; stores the response in the cache if it goes to the network with date and stale response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; stores the response in the cache if it goes to the network with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;force-cache&quot; stores the response in the cache if it goes to the network with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not check the cache for previously cached content and goes to the network regardless with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not check the cache for previously cached content and goes to the network regardless with date and stale response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not check the cache for previously cached content and goes to the network regardless with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not check the cache for previously cached content and goes to the network regardless with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not store the response in the cache with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not store the response in the cache with date and stale response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not store the response in the cache with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;no-store&quot; mode does not store the response in the cache with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Modified-Since header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-None-Match header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Unmodified-Since header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Match header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with date and stale response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;default&quot; mode with an If-Range header is treated similarly to &quot;no-store&quot; with date and fresh response Test timed out
+TIMEOUT Responses with the &quot;Cache-Control: no-store&quot; header are not stored in the cache with Etag and stale response Test timed out
+TIMEOUT Responses with the &quot;Cache-Control: no-store&quot; header are not stored in the cache with date and stale response Test timed out
+TIMEOUT Responses with the &quot;Cache-Control: no-store&quot; header are not stored in the cache with Etag and fresh response Test timed out
+TIMEOUT Responses with the &quot;Cache-Control: no-store&quot; header are not stored in the cache with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does not check the cache for previously cached content and goes to the network regardless with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does not check the cache for previously cached content and goes to the network regardless with date and stale response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does not check the cache for previously cached content and goes to the network regardless with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does not check the cache for previously cached content and goes to the network regardless with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache with date and stale response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache with date and fresh response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache even if a previous response is already stored with Etag and stale response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache even if a previous response is already stored with date and stale response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache even if a previous response is already stored with Etag and fresh response Test timed out
+TIMEOUT RequestCache &quot;reload&quot; mode does store the response in the cache even if a previous response is already stored with date and fresh response Test timed out
+
</ins></span></pre></div>
<a id="trunkLayoutTestsresourcestestharnessreportjs"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/resources/testharnessreport.js (199224 => 199225)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/resources/testharnessreport.js        2016-04-08 09:04:17 UTC (rev 199224)
+++ trunk/LayoutTests/resources/testharnessreport.js        2016-04-08 14:45:24 UTC (rev 199225)
</span><span class="lines">@@ -16,6 +16,11 @@
</span><span class="cx"> if (self.testRunner) {
</span><span class="cx">     testRunner.dumpAsText();
</span><span class="cx">     testRunner.waitUntilDone();
</span><ins>+    // Let's restrict calling testharness timeout() to wptserve tests for the moment.
+    // That will limit the impact to a small number of tests.
+    // The risk is that testharness timeout() might be called to late on slow bots to finish properly.
+    if (testRunner.timeout &amp;&amp; location.port == 8800)
+        setTimeout(timeout, testRunner.timeout * 0.9);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> // Function used to convert the test status code into
</span><span class="lines">@@ -52,30 +57,28 @@
</span><span class="cx">         // Check harness_status.  If it is not 0, tests did not
</span><span class="cx">         // execute correctly, output the error code and message
</span><span class="cx">         if(harness_status.status != 0){
</span><del>-                resultStr += &quot;Harness Error. harness_status.status = &quot; + 
-                                         harness_status.status +
-                                         &quot; , harness_status.message = &quot; +
-                                         harness_status.message;
</del><ins>+                resultStr += &quot;Harness Error (&quot; + 
+                                         convertResult(harness_status.status) +
+                                         &quot;), message = &quot; +
+                                         harness_status.message + &quot;\n\n&quot;;
</ins><span class="cx">         }
</span><del>-        else {
-                // Iterate through tests array and build string that contains
-                // results for all tests
-                for(var i=0; i&lt;tests.length; i++){                                 
-                        var message = (tests[i].message != null) ? tests[i].message : &quot;&quot;;
-                        if (tests[i].status == 1 &amp;&amp; !tests[i].dumpStack) {
-                                // Remove stack for failed tests for proper string comparison without file paths.
-                                // For a test to dump the stack set its dumpStack attribute to true.
-                                var stackIndex = message.indexOf(&quot;(stack:&quot;);
-                                if (stackIndex &gt; 0) {
-                                        message = message.substr(0, stackIndex);
-                                }
</del><ins>+        // Iterate through tests array and build string that contains
+        // results for all tests
+        for(var i = 0; i &lt; tests.length; i++) {
+                var message = (tests[i].message != null) ? tests[i].message : &quot;&quot;;
+                if (tests[i].status == 1 &amp;&amp; !tests[i].dumpStack) {
+                        // Remove stack for failed tests for proper string comparison without file paths.
+                        // For a test to dump the stack set its dumpStack attribute to true.
+                        var stackIndex = message.indexOf(&quot;(stack:&quot;);
+                        if (stackIndex &gt; 0) {
+                                message = message.substr(0, stackIndex);
</ins><span class="cx">                         }
</span><del>-                        resultStr += convertResult(tests[i].status) + &quot; &quot; + 
-                                                ( (tests[i].name!=null) ? tests[i].name : &quot;&quot; ) + &quot; &quot; +
-                                                message +
-                                                &quot;\n&quot;;
-                }                        
-        }
</del><ins>+                }
+                resultStr += convertResult(tests[i].status) + &quot; &quot; + 
+                                        ( (tests[i].name!=null) ? tests[i].name : &quot;&quot; ) + &quot; &quot; +
+                                        message +
+                                        &quot;\n&quot;;
+        }                        
</ins><span class="cx"> 
</span><span class="cx">         results.innerText = resultStr;
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkToolsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Tools/ChangeLog (199224 => 199225)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/ChangeLog        2016-04-08 09:04:17 UTC (rev 199224)
+++ trunk/Tools/ChangeLog        2016-04-08 14:45:24 UTC (rev 199225)
</span><span class="lines">@@ -1,3 +1,21 @@
</span><ins>+2016-04-08  Youenn Fablet  &lt;youenn.fablet@crf.canon.fr&gt;
+
+        Testharness-based tests that time out should be able to produce a detailed output
+        https://bugs.webkit.org/show_bug.cgi?id=145313
+
+        Reviewed by Xabier Rodriguez-Calvar.
+
+        Adding timeout readonly accessor to TestRunner for both WK1 and WK2.
+
+        * DumpRenderTree/TestRunner.cpp:
+        (getTimeoutCallback): The js &quot;timeout&quot; property getter.
+        (TestRunner::staticValues): Adding &quot;timeout&quot; property to DumpRenderTree so that testRunner.timeout called from JS returns the timeout value.
+        * DumpRenderTree/TestRunner.h:
+        (TestRunner::timeout): Adding access to DRT m_timeout private value.
+        * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl: Adding timeout readonly attribute so that testRunner.timeout can be called from JS.
+        * WebKitTestRunner/InjectedBundle/TestRunner.h: Adding DOM timeout getter to implement timeout IDL definition.
+        (WTR::TestRunner::timeout):
+
</ins><span class="cx"> 2016-04-07  Joseph Pecoraro  &lt;pecoraro@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         stylebot should know about TestWebKitAPI FeatureDefines.xcconfig
</span></span></pre></div>
<a id="trunkToolsDumpRenderTreeTestRunnercpp"></a>
<div class="modfile"><h4>Modified: trunk/Tools/DumpRenderTree/TestRunner.cpp (199224 => 199225)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/DumpRenderTree/TestRunner.cpp        2016-04-08 09:04:17 UTC (rev 199224)
+++ trunk/Tools/DumpRenderTree/TestRunner.cpp        2016-04-08 14:45:24 UTC (rev 199225)
</span><span class="lines">@@ -1766,6 +1766,12 @@
</span><span class="cx"> 
</span><span class="cx"> // Static Values
</span><span class="cx"> 
</span><ins>+static JSValueRef getTimeoutCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
+{
+    TestRunner* controller = static_cast&lt;TestRunner*&gt;(JSObjectGetPrivate(thisObject));
+    return JSValueMakeNumber(context, controller-&gt;timeout());
+}
+
</ins><span class="cx"> static JSValueRef getGlobalFlagCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
</span><span class="cx"> {
</span><span class="cx">     TestRunner* controller = static_cast&lt;TestRunner*&gt;(JSObjectGetPrivate(thisObject));
</span><span class="lines">@@ -2005,6 +2011,7 @@
</span><span class="cx"> JSStaticValue* TestRunner::staticValues()
</span><span class="cx"> {
</span><span class="cx">     static JSStaticValue staticValues[] = {
</span><ins>+        { &quot;timeout&quot;, getTimeoutCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
</ins><span class="cx">         { &quot;globalFlag&quot;, getGlobalFlagCallback, setGlobalFlagCallback, kJSPropertyAttributeNone },
</span><span class="cx">         { &quot;webHistoryItemCount&quot;, getWebHistoryItemCountCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
</span><span class="cx">         { &quot;secureEventInputIsEnabled&quot;, getSecureEventInputIsEnabledCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete },
</span></span></pre></div>
<a id="trunkToolsDumpRenderTreeTestRunnerh"></a>
<div class="modfile"><h4>Modified: trunk/Tools/DumpRenderTree/TestRunner.h (199224 => 199225)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/DumpRenderTree/TestRunner.h        2016-04-08 09:04:17 UTC (rev 199224)
+++ trunk/Tools/DumpRenderTree/TestRunner.h        2016-04-08 14:45:24 UTC (rev 199225)
</span><span class="lines">@@ -358,6 +358,7 @@
</span><span class="cx">     bool hasPendingWebNotificationClick() const { return m_hasPendingWebNotificationClick; }
</span><span class="cx"> 
</span><span class="cx">     void setCustomTimeout(int duration) { m_timeout = duration; }
</span><ins>+    double timeout() { return m_timeout; }
</ins><span class="cx"> 
</span><span class="cx"> private:
</span><span class="cx">     TestRunner(const std::string&amp; testURL, const std::string&amp; expectedPixelHash);
</span></span></pre></div>
<a id="trunkToolsWebKitTestRunnerInjectedBundleBindingsTestRunneridl"></a>
<div class="modfile"><h4>Modified: trunk/Tools/WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl (199224 => 199225)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl        2016-04-08 09:04:17 UTC (rev 199224)
+++ trunk/Tools/WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl        2016-04-08 14:45:24 UTC (rev 199225)
</span><span class="lines">@@ -32,6 +32,7 @@
</span><span class="cx">     void waitUntilDownloadFinished();
</span><span class="cx">     void notifyDone();
</span><span class="cx">     double preciseTime();
</span><ins>+    readonly attribute double timeout;
</ins><span class="cx"> 
</span><span class="cx">     // Other dumping.
</span><span class="cx">     void dumpBackForwardList();
</span></span></pre></div>
<a id="trunkToolsWebKitTestRunnerInjectedBundleTestRunnerh"></a>
<div class="modfile"><h4>Modified: trunk/Tools/WebKitTestRunner/InjectedBundle/TestRunner.h (199224 => 199225)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/WebKitTestRunner/InjectedBundle/TestRunner.h        2016-04-08 09:04:17 UTC (rev 199224)
+++ trunk/Tools/WebKitTestRunner/InjectedBundle/TestRunner.h        2016-04-08 14:45:24 UTC (rev 199225)
</span><span class="lines">@@ -71,6 +71,7 @@
</span><span class="cx">     void waitUntilDone();
</span><span class="cx">     void notifyDone();
</span><span class="cx">     double preciseTime();
</span><ins>+    double timeout() { return m_timeout; }
</ins><span class="cx"> 
</span><span class="cx">     // Other dumping.
</span><span class="cx">     void dumpBackForwardList() { m_shouldDumpBackForwardListsForAllWindows = true; }
</span></span></pre>
</div>
</div>

</body>
</html>