<!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>[167406] 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/167406">167406</a></dd>
<dt>Author</dt> <dd>burg@cs.washington.edu</dd>
<dt>Date</dt> <dd>2014-04-16 17:56:35 -0700 (Wed, 16 Apr 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>Web Replay: memoize fallback time values for document.lastModified
https://bugs.webkit.org/show_bug.cgi?id=131318

Reviewed by Joseph Pecoraro.

Source/WebCore:
If a document's Last-Modified header can't be found or used, then
document.lastModified is derived from the current system time or
from filesystem data, which is obviously nondeterministic.

It's better to handle this inside Document::lastModified rather than using
MemoizedDOMResult, because only the fallback case is nondeterministic.

Test: http/tests/inspector/replay/document-last-modified-fallback-value.html

The test is skipped for now, as it will be very flaky without the
functionality introduced by bugs 130728 and 129391.

* dom/Document.cpp:
(WebCore::Document::lastModified): Save or reuse memoized fallback value.
* replay/WebInputs.json: Add input DocumentLastModifiedDate.

LayoutTests:
Mark the new test as skipped until dependent functionality is landed.

* http/tests/inspector/replay/document-last-modified-fallback-value.html: Added.</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="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoredomDocumentcpp">trunk/Source/WebCore/dom/Document.cpp</a></li>
<li><a href="#trunkSourceWebCorereplayWebInputsjson">trunk/Source/WebCore/replay/WebInputs.json</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkLayoutTestshttptestsinspectorreplaydocumentlastmodifiedfallbackvalueexpectedtxt">trunk/LayoutTests/http/tests/inspector/replay/document-last-modified-fallback-value-expected.txt</a></li>
<li><a href="#trunkLayoutTestshttptestsinspectorreplaydocumentlastmodifiedfallbackvaluehtml">trunk/LayoutTests/http/tests/inspector/replay/document-last-modified-fallback-value.html</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (167405 => 167406)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2014-04-17 00:40:36 UTC (rev 167405)
+++ trunk/LayoutTests/ChangeLog        2014-04-17 00:56:35 UTC (rev 167406)
</span><span class="lines">@@ -1,3 +1,14 @@
</span><ins>+2014-04-16  Brian J. Burg  &lt;burg@cs.washington.edu&gt;
+
+        Web Replay: memoize fallback time values for document.lastModified
+        https://bugs.webkit.org/show_bug.cgi?id=131318
+
+        Reviewed by Joseph Pecoraro.
+
+        Mark the new test as skipped until dependent functionality is landed.
+
+        * http/tests/inspector/replay/document-last-modified-fallback-value.html: Added.
+
</ins><span class="cx"> 2014-04-16  Dean Jackson  &lt;dino@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         MediaDocument on iOS should be full page
</span></span></pre></div>
<a id="trunkLayoutTestsTestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/TestExpectations (167405 => 167406)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/TestExpectations        2014-04-17 00:40:36 UTC (rev 167405)
+++ trunk/LayoutTests/TestExpectations        2014-04-17 00:56:35 UTC (rev 167406)
</span><span class="lines">@@ -99,3 +99,6 @@
</span><span class="cx"> # Fails or asserts on most runs.
</span><span class="cx"> webkit.org/b/131679 inspector/dom/content-flow-list.html [ Skip ]
</span><span class="cx"> webkit.org/b/131679 inspector/dom/content-flow-content-removal.html [ Skip ]
</span><ins>+
+# Doesn't work yet, relies on network replay functionality (webkit.org/b/130728, webkit.org/b/129391)
+webkit.org/b/131318 http/tests/inspector/replay/document-last-modified-fallback-value.html [ Skip ]
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestsinspectorreplaydocumentlastmodifiedfallbackvalueexpectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/http/tests/inspector/replay/document-last-modified-fallback-value-expected.txt (0 => 167406)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/inspector/replay/document-last-modified-fallback-value-expected.txt                                (rev 0)
+++ trunk/LayoutTests/http/tests/inspector/replay/document-last-modified-fallback-value-expected.txt        2014-04-17 00:56:35 UTC (rev 167406)
</span><span class="lines">@@ -0,0 +1,13 @@
</span><ins>+Tests that we can capture and replay nondeterminism in fallback values for document.lastModified
+
+Waiting for test page to finish its initial load...
+Test page initial load done.
+Waiting for capturing to start...
+Capturing has started.
+Waiting to capture initial navigation...
+Initial navigation captured. Dumping state....
+Capture stopped, now starting replay to completion...
+Playback has started.
+Waiting to replay initial navigation...
+Initial navigation replayed. Dumping state...
+PASS: Nondeterministic state should not differ during capture and replay.
</ins></span></pre></div>
<a id="trunkLayoutTestshttptestsinspectorreplaydocumentlastmodifiedfallbackvaluehtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/http/tests/inspector/replay/document-last-modified-fallback-value.html (0 => 167406)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/http/tests/inspector/replay/document-last-modified-fallback-value.html                                (rev 0)
+++ trunk/LayoutTests/http/tests/inspector/replay/document-last-modified-fallback-value.html        2014-04-17 00:56:35 UTC (rev 167406)
</span><span class="lines">@@ -0,0 +1,33 @@
</span><ins>+&lt;html&gt;
+&lt;head&gt;
+&lt;script type=&quot;text/javascript&quot; src=&quot;../inspector-test.js&quot;&gt;&lt;/script&gt;
+&lt;script type=&quot;text/javascript&quot; src=&quot;./replay-test.js&quot;&gt;&lt;/script&gt;
+&lt;script&gt;
+
+function appendFrameWithLastModifiedDate(text) {
+    document.write('&lt;iframe src=&quot;../resources/last-modified.php?date=' + escape(text) + '&quot;&gt;&lt;/iframe&gt;');
+}
+
+appendFrameWithLastModifiedDate('');
+
+function dumpNondeterministicState()
+{
+    return Date.parse(frames[0].document.body.textContent);
+}
+
+function test()
+{
+    function statesAreEqual(a, b)
+    {
+        return a === b;
+    }
+
+    InspectorTest.Replay.runSingleSegmentRefTest(statesAreEqual);
+}
+
+&lt;/script&gt;
+&lt;/head&gt;
+&lt;body onload=&quot;runTest()&quot;&gt;
+&lt;p&gt;Tests that we can capture and replay nondeterminism in fallback values for document.lastModified&lt;/p&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (167405 => 167406)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2014-04-17 00:40:36 UTC (rev 167405)
+++ trunk/Source/WebCore/ChangeLog        2014-04-17 00:56:35 UTC (rev 167406)
</span><span class="lines">@@ -1,3 +1,26 @@
</span><ins>+2014-04-16  Brian J. Burg  &lt;burg@cs.washington.edu&gt;
+
+        Web Replay: memoize fallback time values for document.lastModified
+        https://bugs.webkit.org/show_bug.cgi?id=131318
+
+        Reviewed by Joseph Pecoraro.
+
+        If a document's Last-Modified header can't be found or used, then 
+        document.lastModified is derived from the current system time or
+        from filesystem data, which is obviously nondeterministic.
+
+        It's better to handle this inside Document::lastModified rather than using
+        MemoizedDOMResult, because only the fallback case is nondeterministic.
+
+        Test: http/tests/inspector/replay/document-last-modified-fallback-value.html
+
+        The test is skipped for now, as it will be very flaky without the
+        functionality introduced by bugs 130728 and 129391.
+
+        * dom/Document.cpp:
+        (WebCore::Document::lastModified): Save or reuse memoized fallback value.
+        * replay/WebInputs.json: Add input DocumentLastModifiedDate.
+
</ins><span class="cx"> 2014-04-16  David Hyatt  &lt;hyatt@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [New Multicolumn] Selection gets confused when the mouse is in the column gaps.
</span></span></pre></div>
<a id="trunkSourceWebCoredomDocumentcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/dom/Document.cpp (167405 => 167406)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/dom/Document.cpp        2014-04-17 00:40:36 UTC (rev 167405)
+++ trunk/Source/WebCore/dom/Document.cpp        2014-04-17 00:56:35 UTC (rev 167406)
</span><span class="lines">@@ -220,6 +220,7 @@
</span><span class="cx"> #endif
</span><span class="cx"> 
</span><span class="cx"> #if ENABLE(WEB_REPLAY)
</span><ins>+#include &quot;WebReplayInputs.h&quot;
</ins><span class="cx"> #include &lt;replay/EmptyInputCursor.h&gt;
</span><span class="cx"> #endif
</span><span class="cx"> 
</span><span class="lines">@@ -3891,8 +3892,20 @@
</span><span class="cx">     // FIXME: If this document came from the file system, the HTML5
</span><span class="cx">     // specificiation tells us to read the last modification date from the file
</span><span class="cx">     // system.
</span><del>-    if (!foundDate)
-        date.setMillisecondsSinceEpochForDateTime(currentTimeMS());
</del><ins>+    if (!foundDate) {
+        double fallbackDate = currentTimeMS();
+#if ENABLE(WEB_REPLAY)
+        InputCursor&amp; cursor = inputCursor();
+        if (cursor.isCapturing())
+            cursor.appendInput&lt;DocumentLastModifiedDate&gt;(fallbackDate);
+        else if (cursor.isReplaying()) {
+            if (DocumentLastModifiedDate* input = cursor.fetchInput&lt;DocumentLastModifiedDate&gt;())
+                fallbackDate = input-&gt;fallbackValue();
+        }
+#endif
+        date.setMillisecondsSinceEpochForDateTime(fallbackDate);
+    }
+
</ins><span class="cx">     return String::format(&quot;%02d/%02d/%04d %02d:%02d:%02d&quot;, date.month() + 1, date.monthDay(), date.fullYear(), date.hour(), date.minute(), date.second());
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCorereplayWebInputsjson"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/replay/WebInputs.json (167405 => 167406)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/replay/WebInputs.json        2014-04-17 00:40:36 UTC (rev 167405)
+++ trunk/Source/WebCore/replay/WebInputs.json        2014-04-17 00:56:35 UTC (rev 167406)
</span><span class="lines">@@ -165,6 +165,14 @@
</span><span class="cx">             &quot;members&quot;: [ ]
</span><span class="cx">         },
</span><span class="cx">         {
</span><ins>+            &quot;name&quot;: &quot;DocumentLastModifiedDate&quot;,
+            &quot;description&quot;: &quot;A fallback value used for the document's last modified date if the Last-Modified header can't be found or used.&quot;,
+            &quot;queue&quot;: &quot;SCRIPT_MEMOIZED&quot;,
+            &quot;members&quot;: [
+                { &quot;name&quot;: &quot;fallbackValue&quot;, &quot;type&quot;: &quot;double&quot; }
+            ]
+        },
+        {
</ins><span class="cx">             &quot;name&quot;: &quot;EndSegmentSentinel&quot;,
</span><span class="cx">             &quot;description&quot;: &quot;A sentinel input to signal the end of a segment.&quot;,
</span><span class="cx">             &quot;queue&quot;: &quot;EVENT_LOOP&quot;,
</span></span></pre>
</div>
</div>

</body>
</html>