<!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>[197594] 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/197594">197594</a></dd>
<dt>Author</dt> <dd>simon.fraser@apple.com</dd>
<dt>Date</dt> <dd>2016-03-04 15:32:22 -0800 (Fri, 04 Mar 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>Use larger tiles when possible to reduce per-tile painting overhead
https://bugs.webkit.org/show_bug.cgi?id=154985

Reviewed by Zalan Bujtas.

Source/WebCore:

<a href="http://trac.webkit.org/projects/webkit/changeset/197541">r197541</a> inadvertently missed FrameView changes that push scrollability data
onto the TiledBacking, so didn't actually change behavior (hence the 512x512 tiles
in the failing tests).

Also remove m_tileSizeAtLastRevalidate from TileGrid; it's replaced by a simpler test.

* page/FrameView.cpp:
(WebCore::FrameView::addedOrRemovedScrollbar):
* platform/graphics/ca/TileGrid.cpp:
(WebCore::TileGrid::revalidateTiles):
(WebCore::TileGrid::TileGrid): Deleted.
* platform/graphics/ca/TileGrid.h:

LayoutTests:

* tiled-drawing/background-transparency-toggle-expected.txt:
* tiled-drawing/scrolling/fast-scroll-iframe-latched-iframe-expected.txt:
* tiled-drawing/scrolling/fast-scroll-iframe-latched-iframe-with-handler-expected.txt:
* tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-expected.txt:
* tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-with-handler-expected.txt:
* tiled-drawing/scrolling/fixed-background/fixed-background-no-image-expected.txt:
* tiled-drawing/scrolling/fixed-background/fixed-body-background-body-layer-expected.txt:
* tiled-drawing/scrolling/fixed-background/fixed-body-background-expected.txt:
* tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity-expected.txt:
* tiled-drawing/scrolling/fixed-background/fixed-body-background-positioned-expected.txt:
* tiled-drawing/scrolling/fixed-background/fixed-html-background-expected.txt:
* tiled-drawing/scrolling/fixed-background/fixed-non-propagated-body-background-expected.txt:
* tiled-drawing/scrolling/fixed/four-bars-zoomed-expected.txt:
* tiled-drawing/tile-coverage-after-scroll-expected.txt:
* tiled-drawing/tile-coverage-after-scroll-speculative-expected.txt:
* tiled-drawing/tile-coverage-scroll-to-bottom-expected.txt:
* tiled-drawing/tile-coverage-slow-scrolling-expected.txt:
* tiled-drawing/tile-coverage-speculative-expected.txt:
* tiled-drawing/tile-size-unscrollable-expected.txt:
* tiled-drawing/tile-size-vertically-scrollable-expected.txt:
* tiled-drawing/visible-rect-content-inset-expected.txt:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkLayoutTeststileddrawingbackgroundtransparencytoggleexpectedtxt">trunk/LayoutTests/tiled-drawing/background-transparency-toggle-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingscrollingfastscrolliframelatchediframeexpectedtxt">trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-iframe-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingscrollingfastscrolliframelatchediframewithhandlerexpectedtxt">trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-iframe-with-handler-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingscrollingfastscrolliframelatchedmainframeexpectedtxt">trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingscrollingfastscrolliframelatchedmainframewithhandlerexpectedtxt">trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-with-handler-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingscrollingfixedfourbarszoomedexpectedtxt">trunk/LayoutTests/tiled-drawing/scrolling/fixed/four-bars-zoomed-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingscrollingfixedbackgroundfixedbackgroundnoimageexpectedtxt">trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-background-no-image-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingscrollingfixedbackgroundfixedbodybackgroundbodylayerexpectedtxt">trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-body-layer-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingscrollingfixedbackgroundfixedbodybackgroundexpectedtxt">trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingscrollingfixedbackgroundfixedbodybackgroundopacityexpectedtxt">trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingscrollingfixedbackgroundfixedbodybackgroundpositionedexpectedtxt">trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-positioned-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingscrollingfixedbackgroundfixedhtmlbackgroundexpectedtxt">trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-html-background-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingscrollingfixedbackgroundfixednonpropagatedbodybackgroundexpectedtxt">trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-non-propagated-body-background-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingtilecoverageafterscrollexpectedtxt">trunk/LayoutTests/tiled-drawing/tile-coverage-after-scroll-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingtilecoverageafterscrollspeculativeexpectedtxt">trunk/LayoutTests/tiled-drawing/tile-coverage-after-scroll-speculative-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingtilecoveragescrolltobottomexpectedtxt">trunk/LayoutTests/tiled-drawing/tile-coverage-scroll-to-bottom-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingtilecoverageslowscrollingexpectedtxt">trunk/LayoutTests/tiled-drawing/tile-coverage-slow-scrolling-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingtilecoveragespeculativeexpectedtxt">trunk/LayoutTests/tiled-drawing/tile-coverage-speculative-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingtilesizeunscrollableexpectedtxt">trunk/LayoutTests/tiled-drawing/tile-size-unscrollable-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingtilesizeverticallyscrollableexpectedtxt">trunk/LayoutTests/tiled-drawing/tile-size-vertically-scrollable-expected.txt</a></li>
<li><a href="#trunkLayoutTeststileddrawingvisiblerectcontentinsetexpectedtxt">trunk/LayoutTests/tiled-drawing/visible-rect-content-inset-expected.txt</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCorepageFrameViewcpp">trunk/Source/WebCore/page/FrameView.cpp</a></li>
<li><a href="#trunkSourceWebCoreplatformgraphicscaTileGridcpp">trunk/Source/WebCore/platform/graphics/ca/TileGrid.cpp</a></li>
<li><a href="#trunkSourceWebCoreplatformgraphicscaTileGridh">trunk/Source/WebCore/platform/graphics/ca/TileGrid.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/ChangeLog        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -1,3 +1,32 @@
</span><ins>+2016-03-04  Simon Fraser  &lt;simon.fraser@apple.com&gt;
+
+        Use larger tiles when possible to reduce per-tile painting overhead
+        https://bugs.webkit.org/show_bug.cgi?id=154985
+
+        Reviewed by Zalan Bujtas.
+
+        * tiled-drawing/background-transparency-toggle-expected.txt:
+        * tiled-drawing/scrolling/fast-scroll-iframe-latched-iframe-expected.txt:
+        * tiled-drawing/scrolling/fast-scroll-iframe-latched-iframe-with-handler-expected.txt:
+        * tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-expected.txt:
+        * tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-with-handler-expected.txt:
+        * tiled-drawing/scrolling/fixed-background/fixed-background-no-image-expected.txt:
+        * tiled-drawing/scrolling/fixed-background/fixed-body-background-body-layer-expected.txt:
+        * tiled-drawing/scrolling/fixed-background/fixed-body-background-expected.txt:
+        * tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity-expected.txt:
+        * tiled-drawing/scrolling/fixed-background/fixed-body-background-positioned-expected.txt:
+        * tiled-drawing/scrolling/fixed-background/fixed-html-background-expected.txt:
+        * tiled-drawing/scrolling/fixed-background/fixed-non-propagated-body-background-expected.txt:
+        * tiled-drawing/scrolling/fixed/four-bars-zoomed-expected.txt:
+        * tiled-drawing/tile-coverage-after-scroll-expected.txt:
+        * tiled-drawing/tile-coverage-after-scroll-speculative-expected.txt:
+        * tiled-drawing/tile-coverage-scroll-to-bottom-expected.txt:
+        * tiled-drawing/tile-coverage-slow-scrolling-expected.txt:
+        * tiled-drawing/tile-coverage-speculative-expected.txt:
+        * tiled-drawing/tile-size-unscrollable-expected.txt:
+        * tiled-drawing/tile-size-vertically-scrollable-expected.txt:
+        * tiled-drawing/visible-rect-content-inset-expected.txt:
+
</ins><span class="cx"> 2016-03-04  Ryan Haddad  &lt;ryanhaddad@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Temporarily skip fast/table/table-overflow.html on ios-simulator
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingbackgroundtransparencytoggleexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/background-transparency-toggle-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/background-transparency-toggle-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/background-transparency-toggle-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -8,8 +8,8 @@
</span><span class="cx">       (bounds 800.00 600.00)
</span><span class="cx">       (contentsOpaque 1)
</span><span class="cx">       (tile cache coverage 0, 0 800 x 600)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+      (tile size 800 x 600)
+      (top left tile 0, 0 tiles grid 1 x 1)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span><span class="lines">@@ -21,8 +21,8 @@
</span><span class="cx">       (bounds 800.00 600.00)
</span><span class="cx">       (backgroundColor #00000033)
</span><span class="cx">       (tile cache coverage 0, 0 800 x 600)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+      (tile size 800 x 600)
+      (top left tile 0, 0 tiles grid 1 x 1)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span><span class="lines">@@ -34,8 +34,8 @@
</span><span class="cx">       (bounds 800.00 600.00)
</span><span class="cx">       (contentsOpaque 1)
</span><span class="cx">       (tile cache coverage 0, 0 800 x 600)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+      (tile size 800 x 600)
+      (top left tile 0, 0 tiles grid 1 x 1)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span><span class="lines">@@ -46,9 +46,9 @@
</span><span class="cx">     (GraphicsLayer
</span><span class="cx">       (bounds 785.00 648.00)
</span><span class="cx">       (contentsOpaque 1)
</span><del>-      (tile cache coverage 0, 0 785 x 648)
-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+      (tile cache coverage 0, 0 785 x 600)
+      (tile size 800 x 600)
+      (top left tile 0, 0 tiles grid 1 x 1)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingscrollingfastscrolliframelatchediframeexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-iframe-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-iframe-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-iframe-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -25,8 +25,8 @@
</span><span class="cx">       (intersects coverage rect 1)
</span><span class="cx">       (contentsScale 1.00)
</span><span class="cx">       (tile cache coverage 0, 0 785 x 2048)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 4)
</del><ins>+      (tile size 785 x 512)
+      (top left tile 0, 0 tiles grid 1 x 4)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingscrollingfastscrolliframelatchediframewithhandlerexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-iframe-with-handler-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-iframe-with-handler-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-iframe-with-handler-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -25,8 +25,8 @@
</span><span class="cx">       (intersects coverage rect 1)
</span><span class="cx">       (contentsScale 1.00)
</span><span class="cx">       (tile cache coverage 0, 0 785 x 2048)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 4)
</del><ins>+      (tile size 785 x 512)
+      (top left tile 0, 0 tiles grid 1 x 4)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingscrollingfastscrolliframelatchedmainframeexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -25,8 +25,8 @@
</span><span class="cx">       (intersects coverage rect 1)
</span><span class="cx">       (contentsScale 1.00)
</span><span class="cx">       (tile cache coverage 0, 0 785 x 2048)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 4)
</del><ins>+      (tile size 785 x 512)
+      (top left tile 0, 0 tiles grid 1 x 4)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingscrollingfastscrolliframelatchedmainframewithhandlerexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-with-handler-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-with-handler-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/scrolling/fast-scroll-iframe-latched-mainframe-with-handler-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -25,8 +25,8 @@
</span><span class="cx">       (intersects coverage rect 1)
</span><span class="cx">       (contentsScale 1.00)
</span><span class="cx">       (tile cache coverage 0, 0 785 x 2048)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 4)
</del><ins>+      (tile size 785 x 512)
+      (top left tile 0, 0 tiles grid 1 x 4)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingscrollingfixedfourbarszoomedexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/scrolling/fixed/four-bars-zoomed-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/scrolling/fixed/four-bars-zoomed-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/scrolling/fixed/four-bars-zoomed-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -43,9 +43,9 @@
</span><span class="cx">       (coverage rect 0.00, 0.00 341.30 x 254.35)
</span><span class="cx">       (intersects coverage rect 1)
</span><span class="cx">       (contentsScale 2.30)
</span><del>-      (tile cache coverage 0, 0 445 x 445)
-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+      (tile cache coverage 0, 0 341 x 445)
+      (tile size 785 x 512)
+      (top left tile 0, 0 tiles grid 1 x 2)
</ins><span class="cx">       (children 4
</span><span class="cx">         (GraphicsLayer
</span><span class="cx">           (position -4.00 -4.00)
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingscrollingfixedbackgroundfixedbackgroundnoimageexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-background-no-image-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-background-no-image-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-background-no-image-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -6,8 +6,8 @@
</span><span class="cx">       (bounds 785.00 1700.00)
</span><span class="cx">       (contentsOpaque 1)
</span><span class="cx">       (tile cache coverage 0, 0 785 x 1024)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+      (tile size 785 x 512)
+      (top left tile 0, 0 tiles grid 1 x 2)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingscrollingfixedbackgroundfixedbodybackgroundbodylayerexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-body-layer-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-body-layer-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-body-layer-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -16,8 +16,8 @@
</span><span class="cx">         (GraphicsLayer
</span><span class="cx">           (bounds 785.00 1600.00)
</span><span class="cx">           (tile cache coverage 0, 0 785 x 1024)
</span><del>-          (tile size 512 x 512)
-          (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+          (tile size 785 x 512)
+          (top left tile 0, 0 tiles grid 1 x 2)
</ins><span class="cx">         )
</span><span class="cx">       )
</span><span class="cx">     )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingscrollingfixedbackgroundfixedbodybackgroundexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -16,8 +16,8 @@
</span><span class="cx">         (GraphicsLayer
</span><span class="cx">           (bounds 785.00 1700.00)
</span><span class="cx">           (tile cache coverage 0, 0 785 x 1024)
</span><del>-          (tile size 512 x 512)
-          (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+          (tile size 785 x 512)
+          (top left tile 0, 0 tiles grid 1 x 2)
</ins><span class="cx">         )
</span><span class="cx">       )
</span><span class="cx">     )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingscrollingfixedbackgroundfixedbodybackgroundopacityexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -16,8 +16,8 @@
</span><span class="cx">         (GraphicsLayer
</span><span class="cx">           (bounds 785.00 1700.00)
</span><span class="cx">           (tile cache coverage 0, 0 785 x 1024)
</span><del>-          (tile size 512 x 512)
-          (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+          (tile size 785 x 512)
+          (top left tile 0, 0 tiles grid 1 x 2)
</ins><span class="cx">         )
</span><span class="cx">       )
</span><span class="cx">     )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingscrollingfixedbackgroundfixedbodybackgroundpositionedexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-positioned-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-positioned-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-body-background-positioned-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -16,8 +16,8 @@
</span><span class="cx">         (GraphicsLayer
</span><span class="cx">           (bounds 785.00 3700.00)
</span><span class="cx">           (tile cache coverage 0, 0 785 x 1024)
</span><del>-          (tile size 512 x 512)
-          (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+          (tile size 785 x 512)
+          (top left tile 0, 0 tiles grid 1 x 2)
</ins><span class="cx">         )
</span><span class="cx">       )
</span><span class="cx">     )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingscrollingfixedbackgroundfixedhtmlbackgroundexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-html-background-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-html-background-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-html-background-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -16,8 +16,8 @@
</span><span class="cx">         (GraphicsLayer
</span><span class="cx">           (bounds 785.00 1516.00)
</span><span class="cx">           (tile cache coverage 0, 0 785 x 1024)
</span><del>-          (tile size 512 x 512)
-          (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+          (tile size 785 x 512)
+          (top left tile 0, 0 tiles grid 1 x 2)
</ins><span class="cx">         )
</span><span class="cx">       )
</span><span class="cx">     )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingscrollingfixedbackgroundfixednonpropagatedbodybackgroundexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-non-propagated-body-background-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-non-propagated-body-background-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/scrolling/fixed-background/fixed-non-propagated-body-background-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -7,8 +7,8 @@
</span><span class="cx">       (contentsOpaque 1)
</span><span class="cx">       (backgroundColor #C0C0C0)
</span><span class="cx">       (tile cache coverage 0, 0 785 x 1024)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+      (tile size 785 x 512)
+      (top left tile 0, 0 tiles grid 1 x 2)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingtilecoverageafterscrollexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/tile-coverage-after-scroll-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/tile-coverage-after-scroll-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/tile-coverage-after-scroll-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -14,8 +14,8 @@
</span><span class="cx">       (intersects coverage rect 1)
</span><span class="cx">       (contentsScale 1.00)
</span><span class="cx">       (tile cache coverage 0, 2560 785 x 1536)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 5 tiles grid 2 x 3)
</del><ins>+      (tile size 785 x 512)
+      (top left tile 0, 5 tiles grid 1 x 3)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingtilecoverageafterscrollspeculativeexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/tile-coverage-after-scroll-speculative-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/tile-coverage-after-scroll-speculative-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/tile-coverage-after-scroll-speculative-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -14,8 +14,8 @@
</span><span class="cx">       (intersects coverage rect 1)
</span><span class="cx">       (contentsScale 1.00)
</span><span class="cx">       (tile cache coverage 0, 2560 785 x 1536)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 5 tiles grid 2 x 3)
</del><ins>+      (tile size 785 x 512)
+      (top left tile 0, 5 tiles grid 1 x 3)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingtilecoveragescrolltobottomexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/tile-coverage-scroll-to-bottom-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/tile-coverage-scroll-to-bottom-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/tile-coverage-scroll-to-bottom-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -14,8 +14,8 @@
</span><span class="cx">       (intersects coverage rect 1)
</span><span class="cx">       (contentsScale 1.00)
</span><span class="cx">       (tile cache coverage 0, 4096 785 x 925)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 8 tiles grid 2 x 2)
</del><ins>+      (tile size 785 x 512)
+      (top left tile 0, 8 tiles grid 1 x 2)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingtilecoverageslowscrollingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/tile-coverage-slow-scrolling-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/tile-coverage-slow-scrolling-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/tile-coverage-slow-scrolling-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -14,8 +14,8 @@
</span><span class="cx">       (intersects coverage rect 1)
</span><span class="cx">       (contentsScale 1.00)
</span><span class="cx">       (tile cache coverage 0, 0 800 x 600)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+      (tile size 800 x 600)
+      (top left tile 0, 0 tiles grid 1 x 1)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingtilecoveragespeculativeexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/tile-coverage-speculative-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/tile-coverage-speculative-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/tile-coverage-speculative-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -14,8 +14,8 @@
</span><span class="cx">       (intersects coverage rect 1)
</span><span class="cx">       (contentsScale 1.00)
</span><span class="cx">       (tile cache coverage 0, 0 785 x 1024)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+      (tile size 785 x 512)
+      (top left tile 0, 0 tiles grid 1 x 2)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingtilesizeunscrollableexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/tile-size-unscrollable-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/tile-size-unscrollable-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/tile-size-unscrollable-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -6,8 +6,8 @@
</span><span class="cx">       (bounds 800.00 600.00)
</span><span class="cx">       (contentsOpaque 1)
</span><span class="cx">       (tile cache coverage 0, 0 800 x 600)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+      (tile size 800 x 600)
+      (top left tile 0, 0 tiles grid 1 x 1)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingtilesizeverticallyscrollableexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/tile-size-vertically-scrollable-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/tile-size-vertically-scrollable-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/tile-size-vertically-scrollable-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -6,8 +6,8 @@
</span><span class="cx">       (bounds 785.00 2021.00)
</span><span class="cx">       (contentsOpaque 1)
</span><span class="cx">       (tile cache coverage 0, 0 785 x 1024)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 2)
</del><ins>+      (tile size 785 x 512)
+      (top left tile 0, 0 tiles grid 1 x 2)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkLayoutTeststileddrawingvisiblerectcontentinsetexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/tiled-drawing/visible-rect-content-inset-expected.txt (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/tiled-drawing/visible-rect-content-inset-expected.txt        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/LayoutTests/tiled-drawing/visible-rect-content-inset-expected.txt        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -15,8 +15,8 @@
</span><span class="cx">       (intersects coverage rect 1)
</span><span class="cx">       (contentsScale 1.00)
</span><span class="cx">       (tile cache coverage 0, 0 800 x 500)
</span><del>-      (tile size 512 x 512)
-      (top left tile 0, 0 tiles grid 2 x 1)
</del><ins>+      (tile size 800 x 512)
+      (top left tile 0, 0 tiles grid 1 x 1)
</ins><span class="cx">     )
</span><span class="cx">   )
</span><span class="cx"> )
</span></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/Source/WebCore/ChangeLog        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -1,5 +1,25 @@
</span><span class="cx"> 2016-03-04  Simon Fraser  &lt;simon.fraser@apple.com&gt;
</span><span class="cx"> 
</span><ins>+        Use larger tiles when possible to reduce per-tile painting overhead
+        https://bugs.webkit.org/show_bug.cgi?id=154985
+
+        Reviewed by Zalan Bujtas.
+
+        r197541 inadvertently missed FrameView changes that push scrollability data
+        onto the TiledBacking, so didn't actually change behavior (hence the 512x512 tiles
+        in the failing tests).
+
+        Also remove m_tileSizeAtLastRevalidate from TileGrid; it's replaced by a simpler test.
+
+        * page/FrameView.cpp:
+        (WebCore::FrameView::addedOrRemovedScrollbar):
+        * platform/graphics/ca/TileGrid.cpp:
+        (WebCore::TileGrid::revalidateTiles):
+        (WebCore::TileGrid::TileGrid): Deleted.
+        * platform/graphics/ca/TileGrid.h:
+
+2016-03-04  Simon Fraser  &lt;simon.fraser@apple.com&gt;
+
</ins><span class="cx">         Use BoxExtent instead of EdgeSet in TileController
</span><span class="cx">         https://bugs.webkit.org/show_bug.cgi?id=155040
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCorepageFrameViewcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/page/FrameView.cpp (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/page/FrameView.cpp        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/Source/WebCore/page/FrameView.cpp        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -2465,6 +2465,17 @@
</span><span class="cx">         if (renderView-&gt;usesCompositing())
</span><span class="cx">             renderView-&gt;compositor().frameViewDidAddOrRemoveScrollbars();
</span><span class="cx">     }
</span><ins>+
+    if (auto* tiledBacking = this-&gt;tiledBacking()) {
+        TiledBacking::Scrollability scrollability = TiledBacking::NotScrollable;
+        if (horizontalScrollbar())
+            scrollability = TiledBacking::HorizontallyScrollable;
+
+        if (verticalScrollbar())
+            scrollability |= TiledBacking::VerticallyScrollable;
+
+        tiledBacking-&gt;setScrollability(scrollability);
+    }
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> static LayerFlushThrottleState::Flags determineLayerFlushThrottleState(Page&amp; page)
</span></span></pre></div>
<a id="trunkSourceWebCoreplatformgraphicscaTileGridcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/platform/graphics/ca/TileGrid.cpp (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/platform/graphics/ca/TileGrid.cpp        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/Source/WebCore/platform/graphics/ca/TileGrid.cpp        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -46,7 +46,6 @@
</span><span class="cx">     , m_containerLayer(*controller.rootLayer().createCompatibleLayer(PlatformCALayer::LayerTypeLayer, nullptr))
</span><span class="cx">     , m_cohortRemovalTimer(*this, &amp;TileGrid::cohortRemovalTimerFired)
</span><span class="cx">     , m_tileSize(kDefaultTileSize, kDefaultTileSize)
</span><del>-    , m_tileSizeAtLastRevalidate(m_tileSize)
</del><span class="cx"> {
</span><span class="cx">     m_containerLayer.get().setName(TileController::tileGridContainerLayerName());
</span><span class="cx"> }
</span><span class="lines">@@ -333,10 +332,10 @@
</span><span class="cx">     double minimumRevalidationTimerDuration = std::numeric_limits&lt;double&gt;::max();
</span><span class="cx">     bool needsTileRevalidation = false;
</span><span class="cx">     
</span><del>-    m_tileSize = m_controller.tileSize();
-    if (m_tileSize != m_tileSizeAtLastRevalidate) {
</del><ins>+    auto tileSize = m_controller.tileSize();
+    if (tileSize != m_tileSize) {
</ins><span class="cx">         removeAllTiles();
</span><del>-        m_tileSizeAtLastRevalidate = m_tileSize;
</del><ins>+        m_tileSize = tileSize;
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     // Move tiles newly outside the coverage rect into the cohort map.
</span></span></pre></div>
<a id="trunkSourceWebCoreplatformgraphicscaTileGridh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/platform/graphics/ca/TileGrid.h (197593 => 197594)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/platform/graphics/ca/TileGrid.h        2016-03-04 23:32:14 UTC (rev 197593)
+++ trunk/Source/WebCore/platform/graphics/ca/TileGrid.h        2016-03-04 23:32:22 UTC (rev 197594)
</span><span class="lines">@@ -167,7 +167,6 @@
</span><span class="cx">     RepaintCountMap m_tileRepaintCounts;
</span><span class="cx">     
</span><span class="cx">     IntSize m_tileSize;
</span><del>-    IntSize m_tileSizeAtLastRevalidate;
</del><span class="cx"> 
</span><span class="cx">     float m_scale { 1 };
</span><span class="cx"> };
</span></span></pre>
</div>
</div>

</body>
</html>