<!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>[208003] 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/208003">208003</a></dd>
<dt>Author</dt> <dd>bfulgham@apple.com</dd>
<dt>Date</dt> <dd>2016-10-27 13:56:17 -0700 (Thu, 27 Oct 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>Prevent hit tests from being performed on an invalid render tree
https://bugs.webkit.org/show_bug.cgi?id=163877
&lt;rdar://problem/28675761&gt;

Reviewed by Simon Fraser.

Source/WebCore:

Changeset <a href="http://trac.webkit.org/projects/webkit/changeset/200971">r200971</a> added code to ensure that layout is up-to-date before hit testing, but did
so only for the main frame. It was still possible to enter cross-frame hit testing with a
subframe needing style recalc. In that situation, the subframe's updateLayout() would get
called, which could trigger a compositing change that marked the parent frame as needing style
recalc. A subsequent layout on the parent frame (for example by hit testing traversing into
a second subframe) could then mutate the parent frame's layer tree while hit testing was
traversing it.
        
This patch modifies the hit test logic to ensure that a recursive layout is performed so that
we always perform hit tests on a clean set of frames. It also adds some assertions to warn
us if we encounter this invalid state.

Tested by fast/layers/prevent-hit-test-during-layout.html.

* dom/Document.cpp:
(WebCore::Document::scheduleStyleRecalc): Assert that we are not hit testing
during style recalculation.
* page/EventHandler.cpp:
(WebCore::EventHandler::hitTestResultAtPoint): Ensure that we have a clean render tree
when hit testing.
* page/FrameView.cpp:
(WebCore::FrameView::setNeedsLayout): Assert that we are not in the process of hit testing
when we schedule a layout.
* rendering/RenderView.cpp:
(WebCore::RenderView::hitTest): Mark RenderView as in an active hit test.
* rendering/RenderView.h:

LayoutTests:

* fast/layers/prevent-hit-test-during-layout-expected.txt: Added.
* fast/layers/prevent-hit-test-during-layout.html: Added.
* platform/efl/TestExpectations: Skip on this platform.
* platform/gtk/TestExpectations: Skip on this platform.
* platform/ios-simulator/TestExpectations: Skip on this platform.
* platform/win/TestExpectations: Skip on this platform.</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="#trunkLayoutTestsplatformiossimulatorTestExpectations">trunk/LayoutTests/platform/ios-simulator/TestExpectations</a></li>
<li><a href="#trunkLayoutTestsplatformwinTestExpectations">trunk/LayoutTests/platform/win/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="#trunkSourceWebCorepageEventHandlercpp">trunk/Source/WebCore/page/EventHandler.cpp</a></li>
<li><a href="#trunkSourceWebCorepageFrameViewcpp">trunk/Source/WebCore/page/FrameView.cpp</a></li>
<li><a href="#trunkSourceWebCorerenderingRenderViewcpp">trunk/Source/WebCore/rendering/RenderView.cpp</a></li>
<li><a href="#trunkSourceWebCorerenderingRenderViewh">trunk/Source/WebCore/rendering/RenderView.h</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsfastlayerspreventhittestduringlayoutexpectedtxt">trunk/LayoutTests/fast/layers/prevent-hit-test-during-layout-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastlayerspreventhittestduringlayouthtml">trunk/LayoutTests/fast/layers/prevent-hit-test-during-layout.html</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (208002 => 208003)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2016-10-27 20:36:12 UTC (rev 208002)
+++ trunk/LayoutTests/ChangeLog        2016-10-27 20:56:17 UTC (rev 208003)
</span><span class="lines">@@ -1,3 +1,18 @@
</span><ins>+2016-10-25  Brent Fulgham  &lt;bfulgham@apple.com&gt;
+
+        Prevent hit tests from being performed on an invalid render tree
+        https://bugs.webkit.org/show_bug.cgi?id=163877
+        &lt;rdar://problem/28675761&gt;
+
+        Reviewed by Simon Fraser.
+
+        * fast/layers/prevent-hit-test-during-layout-expected.txt: Added.
+        * fast/layers/prevent-hit-test-during-layout.html: Added.
+        * platform/efl/TestExpectations: Skip on this platform.
+        * platform/gtk/TestExpectations: Skip on this platform.
+        * platform/ios-simulator/TestExpectations: Skip on this platform.
+        * platform/win/TestExpectations: Skip on this platform.
+
</ins><span class="cx"> 2016-10-27  Chris Dumez  &lt;cdumez@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Element parameter to CanvasRenderingContext2D.drawFocusIfNeeded() should not be nullable
</span></span></pre></div>
<a id="trunkLayoutTestsfastlayerspreventhittestduringlayoutexpectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/layers/prevent-hit-test-during-layout-expected.txt (0 => 208003)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/layers/prevent-hit-test-during-layout-expected.txt                                (rev 0)
+++ trunk/LayoutTests/fast/layers/prevent-hit-test-during-layout-expected.txt        2016-10-27 20:56:17 UTC (rev 208003)
</span><span class="lines">@@ -0,0 +1,11 @@
</span><ins>+This tests makes sure that hit tests are not processed while laying out the page.
+
+On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
+
+
+PASS successfullyParsed is true
+
+TEST COMPLETE
+   
+
+This test passes if it did not crash.
</ins></span></pre></div>
<a id="trunkLayoutTestsfastlayerspreventhittestduringlayouthtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/layers/prevent-hit-test-during-layout.html (0 => 208003)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/layers/prevent-hit-test-during-layout.html                                (rev 0)
+++ trunk/LayoutTests/fast/layers/prevent-hit-test-during-layout.html        2016-10-27 20:56:17 UTC (rev 208003)
</span><span class="lines">@@ -0,0 +1,56 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+    &lt;script src=&quot;../../resources/js-test-pre.js&quot;&gt;&lt;/script&gt;
+    &lt;script&gt;
+    var fixedDiv;
+    var target;
+
+    if (window.testRunner) {
+        description(&quot;This tests makes sure that hit tests are not processed while laying out the page.&quot;);
+        testRunner.waitUntilDone();
+    }
+
+    function triggerHitTest() {
+        var spanRects = target.getClientRects();
+
+        if (spanRects.count &gt; 1) {
+            document.body.innerHTML += &quot;&lt;br/&gt;ERROR: More than one rect for hit word.&quot;
+            testRunner.notifyDone();
+            return;
+        }
+
+        var rect = spanRects[0];
+        var x = rect.left + rect.width / 2;
+        var y = rect.top + rect.height / 2;
+
+        // This internal test call is used because it is guaranteed to trigger
+        // a recursive hit test. Dictionary lookup itself is not required for this test.
+        var lookupRange = internals.rangeForDictionaryLookupAtLocation(x, y);
+
+        document.body.innerHTML += &quot;&lt;br/&gt;This test passes if it did not crash.&quot;;
+        testRunner.notifyDone();
+    }
+    
+    function runTest() {
+        fixedDiv = window.frames['fixedFrame'].document.getElementById('fixedDiv');
+        target = document.getElementById('target');
+
+        setTimeout(function() {
+            fixedDiv.style.position = &quot;relative&quot;;
+            triggerHitTest();
+        }, 0);
+    }
+    &lt;/script&gt;
+&lt;/head&gt;
+&lt;body onload=&quot;runTest()&quot;&gt;
+    &lt;div&gt;
+            &lt;iframe id=&quot;fixedFrame&quot; src='data:text/html,
+            &lt;div id=&quot;fixedDiv&quot; style=&quot;position:fixed; left:10px; top:10px&quot;&gt;Fixed Frame.&lt;/div&gt;'&gt;
+        &lt;/iframe&gt;
+            &lt;iframe id=&quot;target&quot; src='data:text/html,&lt;div&gt;Second Frame.&lt;/div&gt;'&gt;&lt;/iframe&gt;
+            &lt;iframe src='data:text/html,&lt;div&gt;Third Frame.&lt;/div&gt;'&gt;&lt;/iframe&gt;
+    &lt;/div&gt;
+    &lt;script src=&quot;../../resources/js-test-post.js&quot;&gt;&lt;/script&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkLayoutTestsplatformeflTestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/efl/TestExpectations (208002 => 208003)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/TestExpectations        2016-10-27 20:36:12 UTC (rev 208002)
+++ trunk/LayoutTests/platform/efl/TestExpectations        2016-10-27 20:56:17 UTC (rev 208003)
</span><span class="lines">@@ -596,6 +596,9 @@
</span><span class="cx"> security/contentSecurityPolicy/plugins-types-blocks-youtube-plugin-replacement-without-mime-type.html [ Skip ]
</span><span class="cx"> security/contentSecurityPolicy/plugins-types-blocks-youtube-plugin-replacement.html [ Skip ]
</span><span class="cx"> 
</span><ins>+# Only Mac has implemented DictionaryLookup
+fast/layers/prevent-hit-test-during-layout.html [ Skip ]
+
</ins><span class="cx"> #////////////////////////////////////////////////////////////////////////////////////////
</span><span class="cx"> # CRASHES
</span><span class="cx"> #////////////////////////////////////////////////////////////////////////////////////////
</span></span></pre></div>
<a id="trunkLayoutTestsplatformgtkTestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/gtk/TestExpectations (208002 => 208003)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/gtk/TestExpectations        2016-10-27 20:36:12 UTC (rev 208002)
+++ trunk/LayoutTests/platform/gtk/TestExpectations        2016-10-27 20:56:17 UTC (rev 208003)
</span><span class="lines">@@ -1704,6 +1704,9 @@
</span><span class="cx"> webkit.org/b/152247 fast/forms/input-appearance-spinbutton.html [ Skip ]
</span><span class="cx"> webkit.org/b/152247 fast/forms/listbox-scrollbar-hit-test.html [ Skip ]
</span><span class="cx"> 
</span><ins>+# Only Mac has implemented DictionaryLookup
+fast/layers/prevent-hit-test-during-layout.html [ Skip ]
+
</ins><span class="cx"> #////////////////////////////////////////////////////////////////////////////////////////
</span><span class="cx"> # End of tests with architecture-specific results
</span><span class="cx"> #////////////////////////////////////////////////////////////////////////////////////////
</span></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorTestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/ios-simulator/TestExpectations (208002 => 208003)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/TestExpectations        2016-10-27 20:36:12 UTC (rev 208002)
+++ trunk/LayoutTests/platform/ios-simulator/TestExpectations        2016-10-27 20:56:17 UTC (rev 208003)
</span><span class="lines">@@ -2731,3 +2731,6 @@
</span><span class="cx"> webkit.org/b/163632 fast/text/variations/getComputedStyle.html [ Skip ]
</span><span class="cx"> 
</span><span class="cx"> webkit.org/b/158836 imported/w3c/web-platform-tests/encrypted-media [ Skip ]
</span><ins>+
+# Only Mac has implemented DictionaryLookup
+fast/layers/prevent-hit-test-during-layout.html [ Skip ]
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkLayoutTestsplatformwinTestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/win/TestExpectations (208002 => 208003)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/win/TestExpectations        2016-10-27 20:36:12 UTC (rev 208002)
+++ trunk/LayoutTests/platform/win/TestExpectations        2016-10-27 20:56:17 UTC (rev 208003)
</span><span class="lines">@@ -3622,3 +3622,6 @@
</span><span class="cx"> 
</span><span class="cx"> # html/syntax web platform tests are failing on Windows.
</span><span class="cx"> webkit.org/b/162415 imported/w3c/web-platform-tests/html/syntax [ Skip ]
</span><ins>+
+# Only Mac has implemented DictionaryLookup
+fast/layers/prevent-hit-test-during-layout.html [ Skip ]
</ins></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (208002 => 208003)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2016-10-27 20:36:12 UTC (rev 208002)
+++ trunk/Source/WebCore/ChangeLog        2016-10-27 20:56:17 UTC (rev 208003)
</span><span class="lines">@@ -1,3 +1,38 @@
</span><ins>+2016-10-27  Brent Fulgham  &lt;bfulgham@apple.com&gt;
+
+        Prevent hit tests from being performed on an invalid render tree
+        https://bugs.webkit.org/show_bug.cgi?id=163877
+        &lt;rdar://problem/28675761&gt;
+
+        Reviewed by Simon Fraser.
+
+        Changeset r200971 added code to ensure that layout is up-to-date before hit testing, but did
+        so only for the main frame. It was still possible to enter cross-frame hit testing with a
+        subframe needing style recalc. In that situation, the subframe's updateLayout() would get
+        called, which could trigger a compositing change that marked the parent frame as needing style
+        recalc. A subsequent layout on the parent frame (for example by hit testing traversing into
+        a second subframe) could then mutate the parent frame's layer tree while hit testing was
+        traversing it.
+        
+        This patch modifies the hit test logic to ensure that a recursive layout is performed so that
+        we always perform hit tests on a clean set of frames. It also adds some assertions to warn
+        us if we encounter this invalid state.
+
+        Tested by fast/layers/prevent-hit-test-during-layout.html.
+
+        * dom/Document.cpp:
+        (WebCore::Document::scheduleStyleRecalc): Assert that we are not hit testing
+        during style recalculation.
+        * page/EventHandler.cpp:
+        (WebCore::EventHandler::hitTestResultAtPoint): Ensure that we have a clean render tree
+        when hit testing.
+        * page/FrameView.cpp:
+        (WebCore::FrameView::setNeedsLayout): Assert that we are not in the process of hit testing
+        when we schedule a layout.
+        * rendering/RenderView.cpp:
+        (WebCore::RenderView::hitTest): Mark RenderView as in an active hit test.
+        * rendering/RenderView.h:
+
</ins><span class="cx"> 2016-10-27  Zan Dobersek  &lt;zdobersek@igalia.com&gt;
</span><span class="cx"> 
</span><span class="cx">         BufferSource should behave as an union
</span></span></pre></div>
<a id="trunkSourceWebCoredomDocumentcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/dom/Document.cpp (208002 => 208003)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/dom/Document.cpp        2016-10-27 20:36:12 UTC (rev 208002)
+++ trunk/Source/WebCore/dom/Document.cpp        2016-10-27 20:56:17 UTC (rev 208003)
</span><span class="lines">@@ -1755,6 +1755,8 @@
</span><span class="cx"> 
</span><span class="cx"> void Document::scheduleStyleRecalc()
</span><span class="cx"> {
</span><ins>+    ASSERT(!m_renderView || !m_renderView-&gt;inHitTesting());
+
</ins><span class="cx">     if (m_styleRecalcTimer.isActive() || pageCacheState() != NotInPageCache)
</span><span class="cx">         return;
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCorepageEventHandlercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/page/EventHandler.cpp (208002 => 208003)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/page/EventHandler.cpp        2016-10-27 20:36:12 UTC (rev 208002)
+++ trunk/Source/WebCore/page/EventHandler.cpp        2016-10-27 20:56:17 UTC (rev 208003)
</span><span class="lines">@@ -1145,9 +1145,11 @@
</span><span class="cx"> 
</span><span class="cx">     unsigned nonNegativePaddingWidth = std::max&lt;LayoutUnit&gt;(0, padding.width()).toUnsigned();
</span><span class="cx">     unsigned nonNegativePaddingHeight = std::max&lt;LayoutUnit&gt;(0, padding.height()).toUnsigned();
</span><ins>+
</ins><span class="cx">     // We should always start hit testing a clean tree.
</span><del>-    if (m_frame.document())
-        m_frame.document()-&gt;updateLayoutIgnorePendingStylesheets();
</del><ins>+    if (auto* frameView = m_frame.view())
+        frameView-&gt;updateLayoutAndStyleIfNeededRecursive();
+
</ins><span class="cx">     HitTestResult result(point, nonNegativePaddingHeight, nonNegativePaddingWidth, nonNegativePaddingHeight, nonNegativePaddingWidth);
</span><span class="cx">     RenderView* renderView = m_frame.contentRenderer();
</span><span class="cx">     if (!renderView)
</span></span></pre></div>
<a id="trunkSourceWebCorepageFrameViewcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/page/FrameView.cpp (208002 => 208003)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/page/FrameView.cpp        2016-10-27 20:36:12 UTC (rev 208002)
+++ trunk/Source/WebCore/page/FrameView.cpp        2016-10-27 20:56:17 UTC (rev 208003)
</span><span class="lines">@@ -2845,8 +2845,10 @@
</span><span class="cx">         return;
</span><span class="cx">     }
</span><span class="cx"> 
</span><del>-    if (RenderView* renderView = this-&gt;renderView())
</del><ins>+    if (auto* renderView = this-&gt;renderView()) {
+        ASSERT(!renderView-&gt;inHitTesting());
</ins><span class="cx">         renderView-&gt;setNeedsLayout();
</span><ins>+    }
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> void FrameView::unscheduleRelayout()
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingRenderViewcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/RenderView.cpp (208002 => 208003)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/RenderView.cpp        2016-10-27 20:36:12 UTC (rev 208002)
+++ trunk/Source/WebCore/rendering/RenderView.cpp        2016-10-27 20:56:17 UTC (rev 208003)
</span><span class="lines">@@ -52,6 +52,7 @@
</span><span class="cx"> #include &quot;StyleInheritedData.h&quot;
</span><span class="cx"> #include &quot;TransformState.h&quot;
</span><span class="cx"> #include &lt;wtf/StackStats.h&gt;
</span><ins>+#include &lt;wtf/TemporaryChange.h&gt;
</ins><span class="cx"> 
</span><span class="cx"> namespace WebCore {
</span><span class="cx"> 
</span><span class="lines">@@ -183,6 +184,10 @@
</span><span class="cx"> bool RenderView::hitTest(const HitTestRequest&amp; request, const HitTestLocation&amp; location, HitTestResult&amp; result)
</span><span class="cx"> {
</span><span class="cx">     document().updateLayout();
</span><ins>+    
+#if !ASSERT_DISABLED
+    TemporaryChange&lt;bool&gt; hitTestRestorer { m_inHitTesting, true };
+#endif
</ins><span class="cx"> 
</span><span class="cx">     FrameFlatteningLayoutDisallower disallower(frameView());
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingRenderViewh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/RenderView.h (208002 => 208003)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/RenderView.h        2016-10-27 20:36:12 UTC (rev 208002)
+++ trunk/Source/WebCore/rendering/RenderView.h        2016-10-27 20:56:17 UTC (rev 208003)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> /*
</span><span class="cx">  * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
</span><del>- * Copyright (C) 2006, 2015 Apple Inc.
</del><ins>+ * Copyright (C) 2006, 2015-2016 Apple Inc.
</ins><span class="cx">  *
</span><span class="cx">  * This library is free software; you can redistribute it and/or
</span><span class="cx">  * modify it under the terms of the GNU Library General Public
</span><span class="lines">@@ -250,6 +250,10 @@
</span><span class="cx">     const HashSet&lt;const RenderBox*&gt;&amp; boxesWithScrollSnapCoordinates() { return m_boxesWithScrollSnapCoordinates; }
</span><span class="cx"> #endif
</span><span class="cx"> 
</span><ins>+#if !ASSERT_DISABLED
+    bool inHitTesting() const { return m_inHitTesting; }
+#endif
+
</ins><span class="cx"> protected:
</span><span class="cx">     void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&amp;, MapCoordinatesFlags, bool* wasFixed) const override;
</span><span class="cx">     const RenderObject* pushMappingToContainer(const RenderLayerModelObject* ancestorToStopAt, RenderGeometryMap&amp;) const override;
</span><span class="lines">@@ -360,6 +364,9 @@
</span><span class="cx">     bool m_hasSoftwareFilters { false };
</span><span class="cx">     bool m_usesFirstLineRules { false };
</span><span class="cx">     bool m_usesFirstLetterRules { false };
</span><ins>+#if !ASSERT_DISABLED
+    bool m_inHitTesting { false };
+#endif
</ins><span class="cx"> 
</span><span class="cx">     HashSet&lt;RenderElement*&gt; m_renderersWithPausedImageAnimation;
</span><span class="cx">     HashSet&lt;RenderElement*&gt; m_visibleInViewportRenderers;
</span></span></pre>
</div>
</div>

</body>
</html>