<!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>[178335] releases/WebKitGTK/webkit-2.6</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/178335">178335</a></dd>
<dt>Author</dt> <dd>carlosgc@webkit.org</dd>
<dt>Date</dt> <dd>2015-01-13 01:43:04 -0800 (Tue, 13 Jan 2015)</dd>
</dl>

<h3>Log Message</h3>
<pre>Merge <a href="http://trac.webkit.org/projects/webkit/changeset/176978">r176978</a> - Inline elements whose parents have small line-height are laid out too low
https://bugs.webkit.org/show_bug.cgi?id=139375

Reviewed by Dave Hyatt.

Source/WebCore:

This is a port of the Blink patch at
https://src.chromium.org/viewvc/blink?revision=155253&amp;view=revision.

When laying out inline elements, we try to align leaf children's parents'
baselines across the entire line. However, if you set line-height: 0px on a
span, the entire InlineBox which represents that span will have a height of
0, and therefore be laid out entirely on the baseline. In addition, we will
try to vertically center the leaf text in the span's InlineBox, which means
the leaf text will be vertically centered on the baseline. All the other
major browsers do not have this behavior; instead, they line up the boxes
as you would expect.

This bug led to a rendering problem on the front page of the New York Times.

Here is the ChangeLog from the Blink patch:

Fix baseline position when it is outside the element's box

Specifically, we shouldn't force the baseline to be inside the element. IE
and FF don't do this, and it's incompatible with the CSS spec:

&quot;The baseline of an 'inline-block' is the baseline of its last line box in
the normal flow, unless it has either no in-flow line boxes or if its
'overflow' property has a computed value other than 'visible', in which case
the baseline is the bottom margin edge.&quot;
-- http://www.w3.org/TR/CSS21/visudet.html#leading

It doesn't have a special case for &quot;baseline is outside of the element's
margin box&quot;.

Test: fast/text/small-line-height.html

* rendering/RenderBlock.cpp:
(WebCore::RenderBlock::baselinePosition):

LayoutTests:

Add fast/text/small-line-height.html for a simple example. In addition, update
existing tests.

* fast/forms/textfield-overflow-by-value-update-expected.txt:
* fast/regions/cssom/client-rects-inline-complex.html:
* fast/regions/overflow/overflow-region-inline-expected.html:
* fast/text/small-line-height-expected.html: Added.
* fast/text/small-line-height.html: Added.
* platform/mac/fast/box-sizing/box-sizing-expected.png:
* platform/mac/fast/box-sizing/box-sizing-expected.txt:
* platform/mac/fast/forms/search-vertical-alignment-expected.png:
* platform/mac/fast/forms/search-vertical-alignment-expected.txt:
* platform/mac/fast/forms/textfield-overflow-by-value-update-expected.png: Removed.
* platform/mac/fast/multicol/client-rects-expected.png:
* platform/mac/fast/multicol/client-rects-expected.txt:
* platform/mac/fast/multicol/client-rects-spanners-complex-expected.png:
* platform/mac/fast/multicol/client-rects-spanners-complex-expected.txt:
* platform/mac/fast/multicol/client-rects-spanners-expected.png:
* platform/mac/fast/multicol/client-rects-spanners-expected.txt:
* platform/mac/fast/multicol/layers-split-across-columns-expected.png:
* platform/mac/fast/multicol/layers-split-across-columns-expected.txt:
* platform/mac/fast/multicol/newmulticol/client-rects-expected.png:
* platform/mac/fast/multicol/newmulticol/client-rects-expected.txt:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsChangeLog">releases/WebKitGTK/webkit-2.6/LayoutTests/ChangeLog</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsfastboxsizingboxsizinghtml">releases/WebKitGTK/webkit-2.6/LayoutTests/fast/box-sizing/box-sizing.html</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsfastformstextfieldoverflowbyvalueupdateexpectedtxt">releases/WebKitGTK/webkit-2.6/LayoutTests/fast/forms/textfield-overflow-by-value-update-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsfastregionscssomclientrectsinlinecomplexhtml">releases/WebKitGTK/webkit-2.6/LayoutTests/fast/regions/cssom/client-rects-inline-complex.html</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsfastregionsoverflowoverflowregioninlineexpectedhtml">releases/WebKitGTK/webkit-2.6/LayoutTests/fast/regions/overflow/overflow-region-inline-expected.html</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacfastboxsizingboxsizingexpectedpng">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/box-sizing/box-sizing-expected.png</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacfastboxsizingboxsizingexpectedtxt">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/box-sizing/box-sizing-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolclientrectsexpectedpng">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-expected.png</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolclientrectsexpectedtxt">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolclientrectsspannerscomplexexpectedpng">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-spanners-complex-expected.png</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolclientrectsspannerscomplexexpectedtxt">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-spanners-complex-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolclientrectsspannersexpectedpng">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-spanners-expected.png</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolclientrectsspannersexpectedtxt">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-spanners-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticollayerssplitacrosscolumnsexpectedpng">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/layers-split-across-columns-expected.png</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticollayerssplitacrosscolumnsexpectedtxt">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/layers-split-across-columns-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolnewmulticolclientrectsexpectedpng">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/newmulticol/client-rects-expected.png</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolnewmulticolclientrectsexpectedtxt">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/newmulticol/client-rects-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacmountainlionfastformssearchverticalalignmentexpectedtxt">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac-mountainlion/fast/forms/search-vertical-alignment-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit26SourceWebCoreChangeLog">releases/WebKitGTK/webkit-2.6/Source/WebCore/ChangeLog</a></li>
<li><a href="#releasesWebKitGTKwebkit26SourceWebCorerenderingRenderBlockcpp">releases/WebKitGTK/webkit-2.6/Source/WebCore/rendering/RenderBlock.cpp</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsfasttextsmalllineheightexpectedhtml">releases/WebKitGTK/webkit-2.6/LayoutTests/fast/text/small-line-height-expected.html</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsfasttextsmalllineheighthtml">releases/WebKitGTK/webkit-2.6/LayoutTests/fast/text/small-line-height.html</a></li>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacmountainlionfastformssearchverticalalignmentexpectedpng">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac-mountainlion/fast/forms/search-vertical-alignment-expected.png</a></li>
</ul>

<h3>Removed Paths</h3>
<ul>
<li><a href="#releasesWebKitGTKwebkit26LayoutTestsplatformmacfastformstextfieldoverflowbyvalueupdateexpectedpng">releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/forms/textfield-overflow-by-value-update-expected.png</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="releasesWebKitGTKwebkit26LayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/ChangeLog (178334 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/LayoutTests/ChangeLog        2015-01-13 09:32:17 UTC (rev 178334)
+++ releases/WebKitGTK/webkit-2.6/LayoutTests/ChangeLog        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -1,3 +1,34 @@
</span><ins>+2014-12-08  Myles C. Maxfield  &lt;mmaxfield@apple.com&gt;
+
+        Inline elements whose parents have small line-height are laid out too low
+        https://bugs.webkit.org/show_bug.cgi?id=139375
+
+        Reviewed by Dave Hyatt.
+
+        Add fast/text/small-line-height.html for a simple example. In addition, update
+        existing tests.
+
+        * fast/forms/textfield-overflow-by-value-update-expected.txt:
+        * fast/regions/cssom/client-rects-inline-complex.html:
+        * fast/regions/overflow/overflow-region-inline-expected.html:
+        * fast/text/small-line-height-expected.html: Added.
+        * fast/text/small-line-height.html: Added.
+        * platform/mac/fast/box-sizing/box-sizing-expected.png:
+        * platform/mac/fast/box-sizing/box-sizing-expected.txt:
+        * platform/mac/fast/forms/search-vertical-alignment-expected.png:
+        * platform/mac/fast/forms/search-vertical-alignment-expected.txt:
+        * platform/mac/fast/forms/textfield-overflow-by-value-update-expected.png: Removed.
+        * platform/mac/fast/multicol/client-rects-expected.png:
+        * platform/mac/fast/multicol/client-rects-expected.txt:
+        * platform/mac/fast/multicol/client-rects-spanners-complex-expected.png:
+        * platform/mac/fast/multicol/client-rects-spanners-complex-expected.txt:
+        * platform/mac/fast/multicol/client-rects-spanners-expected.png:
+        * platform/mac/fast/multicol/client-rects-spanners-expected.txt:
+        * platform/mac/fast/multicol/layers-split-across-columns-expected.png:
+        * platform/mac/fast/multicol/layers-split-across-columns-expected.txt:
+        * platform/mac/fast/multicol/newmulticol/client-rects-expected.png:
+        * platform/mac/fast/multicol/newmulticol/client-rects-expected.txt:
+
</ins><span class="cx"> 2014-12-08  Mark Lam  &lt;mark.lam@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         CFA wrongly assumes that a speculation for SlowPutArrayStorageShape disallows ArrayStorageShape arrays.
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsfastboxsizingboxsizinghtml"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/fast/box-sizing/box-sizing.html (178334 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/LayoutTests/fast/box-sizing/box-sizing.html        2015-01-13 09:32:17 UTC (rev 178334)
+++ releases/WebKitGTK/webkit-2.6/LayoutTests/fast/box-sizing/box-sizing.html        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -12,7 +12,7 @@
</span><span class="cx"> &lt;/style&gt;
</span><span class="cx"> &lt;/head&gt;
</span><span class="cx"> &lt;body&gt;
</span><del>-All of the boxes below should be 20x20 and look identical.
</del><ins>+All of the boxes below should be 20x20 and look identical, except for the rightmost box in the Inline Blocks section, which should look the same but be raised above the other three in that section.
</ins><span class="cx"> 
</span><span class="cx"> &lt;h1&gt;Normal Blocks&lt;/h1&gt;
</span><span class="cx"> 
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsfastformstextfieldoverflowbyvalueupdateexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/fast/forms/textfield-overflow-by-value-update-expected.txt (178334 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/LayoutTests/fast/forms/textfield-overflow-by-value-update-expected.txt        2015-01-13 09:32:17 UTC (rev 178334)
+++ releases/WebKitGTK/webkit-2.6/LayoutTests/fast/forms/textfield-overflow-by-value-update-expected.txt        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -1,8 +1,8 @@
</span><span class="cx"> layer at (0,0) size 800x600
</span><span class="cx">   RenderView at (0,0) size 800x600
</span><del>-layer at (0,0) size 800x34
-  RenderBlock {HTML} at (0,0) size 800x34
-    RenderBody {BODY} at (8,8) size 784x18
-      RenderTextControl {INPUT} at (0,12) size 102x2 [bgcolor=#FFFFFF]
</del><ins>+layer at (0,0) size 800x52
+  RenderBlock {HTML} at (0,0) size 800x52
+    RenderBody {BODY} at (8,8) size 784x36
+      RenderTextControl {INPUT} at (0,0) size 102x2 [bgcolor=#FFFFFF]
</ins><span class="cx">       RenderText {#text} at (0,0) size 0x0
</span><span class="cx">       RenderText {#text} at (0,0) size 0x0
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsfastregionscssomclientrectsinlinecomplexhtml"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/fast/regions/cssom/client-rects-inline-complex.html (178334 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/LayoutTests/fast/regions/cssom/client-rects-inline-complex.html        2015-01-13 09:32:17 UTC (rev 178334)
+++ releases/WebKitGTK/webkit-2.6/LayoutTests/fast/regions/cssom/client-rects-inline-complex.html        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -71,7 +71,7 @@
</span><span class="cx">         if (window.testRunner)
</span><span class="cx">             testRunner.dumpAsText();
</span><span class="cx">         
</span><del>-        var contentClientRects = [[11, 11, 221, 211, 200, 210], [31, 221, 51, 471, 250, 20]];
</del><ins>+        var contentClientRects = [[11, 11, 221, 211, 200, 210], [31, 221, 91, 471, 250, 60]];
</ins><span class="cx">         var inlineBlockClientRects = [[51, 91, 143, 183, 92, 92]];
</span><span class="cx">         var insideInlineBlockClientRects = [[57, 97, 485, 177, 80, 428]];
</span><span class="cx">         var imageClientRects = [[68, 108, 470, 410, 302, 402]];
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsfastregionsoverflowoverflowregioninlineexpectedhtml"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/fast/regions/overflow/overflow-region-inline-expected.html (178334 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/LayoutTests/fast/regions/overflow/overflow-region-inline-expected.html        2015-01-13 09:32:17 UTC (rev 178334)
+++ releases/WebKitGTK/webkit-2.6/LayoutTests/fast/regions/overflow/overflow-region-inline-expected.html        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -35,6 +35,7 @@
</span><span class="cx">                 top: 160px;
</span><span class="cx">                 padding: 10px;
</span><span class="cx">                 width: 700px;
</span><ins>+                height: 135px;
</ins><span class="cx">             }
</span><span class="cx">             .keyword {
</span><span class="cx">                 color: red;
</span><span class="lines">@@ -51,14 +52,14 @@
</span><span class="cx">         &lt;/ul&gt;
</span><span class="cx">         &lt;div id=&quot;regionContainer&quot;&gt;
</span><span class="cx">             &lt;span class=&quot;opacity&quot;&gt;
</span><del>-                &lt;b&gt;y&lt;i&gt;x &lt;div id=&quot;region&quot;&gt;&lt;/i&gt;&lt;/b&gt;
</del><ins>+                &lt;b style=&quot;position: relative; left: 0px; top: -101px;&quot;&gt;y&lt;i&gt;x &lt;/i&gt;&lt;/b&gt;&lt;div id=&quot;region&quot;&gt;
</ins><span class="cx">                     &lt;div id=&quot;content&quot;&gt;
</span><span class="cx">                         &lt;div&gt;This region has&lt;br/&gt;&lt;span class=&quot;keyword&quot;&gt;display: inline-block&lt;/span&gt; and is sitting inside an &lt;span class=&quot;keyword&quot;&gt;i&lt;/span&gt;, inside a &lt;span class=&quot;keyword&quot;&gt;b&lt;/span&gt; with 0.5 opacity and inside a &lt;span class=&quot;keyword&quot;&gt;span&lt;/span&gt;,&lt;/div&gt;
</span><span class="cx">                         &lt;br/&gt;&lt;br/&gt;
</span><span class="cx">                         &lt;div class=&quot;overflow&quot;&gt;causing it to be part of a complex tree of line elements.&lt;/div&gt;
</span><span class="cx">                         &lt;div class=&quot;overflow&quot;&gt;Overflow2_1_Overflow2_1_Overflow2_1&lt;/div&gt;
</span><span class="cx">                     &lt;/div&gt;
</span><del>-                &lt;/div&gt;  &lt;b&gt;&lt;i&gt;x&lt;/i&gt;y&lt;/b&gt;
</del><ins>+                &lt;/div&gt;  &lt;b style=&quot;position: relative; left: 0px; top: -101px;&quot;&gt;&lt;i&gt;x&lt;/i&gt;y&lt;/b&gt;
</ins><span class="cx">             &lt;/span&gt;
</span><span class="cx">             &lt;div id=&quot;regionInSpan&quot;&gt;
</span><span class="cx">                 &lt;div id=&quot;content2&quot;&gt;
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsfasttextsmalllineheightexpectedhtml"></a>
<div class="addfile"><h4>Added: releases/WebKitGTK/webkit-2.6/LayoutTests/fast/text/small-line-height-expected.html (0 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/LayoutTests/fast/text/small-line-height-expected.html                                (rev 0)
+++ releases/WebKitGTK/webkit-2.6/LayoutTests/fast/text/small-line-height-expected.html        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -0,0 +1,8 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;/head&gt;
+&lt;body&gt;
+WordAnother word
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsfasttextsmalllineheighthtml"></a>
<div class="addfile"><h4>Added: releases/WebKitGTK/webkit-2.6/LayoutTests/fast/text/small-line-height.html (0 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/LayoutTests/fast/text/small-line-height.html                                (rev 0)
+++ releases/WebKitGTK/webkit-2.6/LayoutTests/fast/text/small-line-height.html        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -0,0 +1,8 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;/head&gt;
+&lt;body&gt;
+&lt;span style=&quot;display: inline-block; line-height: 0px;&quot;&gt;Word&lt;/span&gt;Another word
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacfastboxsizingboxsizingexpectedpng"></a>
<div class="binary"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/box-sizing/box-sizing-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacfastboxsizingboxsizingexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/box-sizing/box-sizing-expected.txt (178334 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/box-sizing/box-sizing-expected.txt        2015-01-13 09:32:17 UTC (rev 178334)
+++ releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/box-sizing/box-sizing-expected.txt        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -1,90 +1,91 @@
</span><del>-layer at (0,0) size 785x909
</del><ins>+layer at (0,0) size 785x953
</ins><span class="cx">   RenderView at (0,0) size 785x600
</span><del>-layer at (0,0) size 785x909
-  RenderBlock {HTML} at (0,0) size 785x910
-    RenderBody {BODY} at (8,8) size 769x894
-      RenderBlock (anonymous) at (0,0) size 769x18
-        RenderText {#text} at (0,0) size 373x18
-          text run at (0,0) width 373: &quot;All of the boxes below should be 20x20 and look identical.&quot;
-      RenderBlock {H1} at (0,39) size 769x38
</del><ins>+layer at (0,0) size 785x953
+  RenderBlock {HTML} at (0,0) size 785x954
+    RenderBody {BODY} at (8,8) size 769x938
+      RenderBlock (anonymous) at (0,0) size 769x36
+        RenderText {#text} at (0,0) size 733x36
+          text run at (0,0) width 733: &quot;All of the boxes below should be 20x20 and look identical, except for the rightmost box in the Inline Blocks section,&quot;
+          text run at (0,18) width 491: &quot;which should look the same but be raised above the other three in that section.&quot;
+      RenderBlock {H1} at (0,57) size 769x38
</ins><span class="cx">         RenderText {#text} at (0,0) size 203x37
</span><span class="cx">           text run at (0,0) width 203: &quot;Normal Blocks&quot;
</span><del>-      RenderBlock {DIV} at (5,97) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-      RenderBlock {DIV} at (5,127) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-      RenderBlock {DIV} at (5,157) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-      RenderBlock {DIV} at (5,187) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</del><ins>+      RenderBlock {DIV} at (5,115) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+      RenderBlock {DIV} at (5,145) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+      RenderBlock {DIV} at (5,175) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+      RenderBlock {DIV} at (5,205) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</ins><span class="cx">         RenderBR {BR} at (6,6) size 0x18
</span><span class="cx">         RenderBR {BR} at (6,24) size 0x18
</span><span class="cx">         RenderBR {BR} at (6,42) size 0x18
</span><del>-      RenderBlock {H1} at (0,229) size 769x38
</del><ins>+      RenderBlock {H1} at (0,247) size 769x38
</ins><span class="cx">         RenderText {#text} at (0,0) size 178x37
</span><span class="cx">           text run at (0,0) width 178: &quot;Inline Blocks&quot;
</span><del>-      RenderBlock (anonymous) at (0,287) size 769x41
-        RenderBlock {DIV} at (5,10) size 20x20 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-        RenderBlock {DIV} at (35,10) size 20x20 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-        RenderBlock {DIV} at (65,10) size 20x20 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</del><ins>+      RenderBlock (anonymous) at (0,305) size 769x67
+        RenderBlock {DIV} at (5,36) size 20x20 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+        RenderBlock {DIV} at (35,36) size 20x20 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+        RenderBlock {DIV} at (65,36) size 20x20 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</ins><span class="cx">         RenderBlock {DIV} at (95,10) size 20x20 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</span><span class="cx">           RenderBR {BR} at (6,6) size 0x18
</span><span class="cx">           RenderBR {BR} at (6,24) size 0x18
</span><span class="cx">           RenderBR {BR} at (6,42) size 0x18
</span><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {H1} at (0,349) size 769x38
</del><ins>+      RenderBlock {H1} at (0,393) size 769x38
</ins><span class="cx">         RenderText {#text} at (0,0) size 241x37
</span><span class="cx">           text run at (0,0) width 241: &quot;Positioned Blocks&quot;
</span><del>-      RenderBlock (anonymous) at (0,407) size 769x19
</del><ins>+      RenderBlock (anonymous) at (0,451) size 769x19
</ins><span class="cx">         RenderBR {BR} at (0,0) size 0x18
</span><del>-      RenderBlock {H1} at (0,447) size 769x38
</del><ins>+      RenderBlock {H1} at (0,491) size 769x38
</ins><span class="cx">         RenderText {#text} at (0,0) size 210x37
</span><span class="cx">           text run at (0,0) width 210: &quot;Floating blocks&quot;
</span><del>-      RenderBlock (floating) {DIV} at (5,515) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-      RenderBlock (floating) {DIV} at (35,515) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-      RenderBlock (floating) {DIV} at (65,515) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-      RenderBlock (floating) {DIV} at (95,515) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</del><ins>+      RenderBlock (floating) {DIV} at (5,559) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+      RenderBlock (floating) {DIV} at (35,559) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+      RenderBlock (floating) {DIV} at (65,559) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+      RenderBlock (floating) {DIV} at (95,559) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</ins><span class="cx">         RenderBR {BR} at (6,6) size 0x18
</span><span class="cx">         RenderBR {BR} at (6,24) size 0x18
</span><span class="cx">         RenderBR {BR} at (6,42) size 0x18
</span><del>-      RenderBlock (anonymous) at (0,505) size 769x41
</del><ins>+      RenderBlock (anonymous) at (0,549) size 769x41
</ins><span class="cx">         RenderBR {BR} at (120,0) size 0x18
</span><del>-      RenderBlock {H1} at (0,566) size 769x38
</del><ins>+      RenderBlock {H1} at (0,610) size 769x38
</ins><span class="cx">         RenderText {#text} at (0,0) size 210x37
</span><span class="cx">           text run at (0,0) width 210: &quot;Normal Images&quot;
</span><del>-      RenderBlock (anonymous) at (0,625) size 769x41
</del><ins>+      RenderBlock (anonymous) at (0,669) size 769x41
</ins><span class="cx">         RenderImage {IMG} at (5,10) size 20x20 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</span><span class="cx">         RenderImage {IMG} at (35,10) size 20x20 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</span><span class="cx">         RenderImage {IMG} at (65,10) size 20x20 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</span><span class="cx">         RenderImage {IMG} at (95,10) size 20x20 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</span><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {H1} at (0,686) size 769x38
</del><ins>+      RenderBlock {H1} at (0,730) size 769x38
</ins><span class="cx">         RenderText {#text} at (0,0) size 248x37
</span><span class="cx">           text run at (0,0) width 248: &quot;Positioned Images&quot;
</span><del>-      RenderBlock (anonymous) at (0,745) size 769x19
</del><ins>+      RenderBlock (anonymous) at (0,789) size 769x19
</ins><span class="cx">         RenderBR {BR} at (0,0) size 0x18
</span><del>-      RenderBlock {H1} at (0,784) size 769x38
</del><ins>+      RenderBlock {H1} at (0,828) size 769x38
</ins><span class="cx">         RenderText {#text} at (0,0) size 220x37
</span><span class="cx">           text run at (0,0) width 220: &quot;Floating Images&quot;
</span><del>-      RenderImage {IMG} at (5,853) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-      RenderImage {IMG} at (35,853) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-      RenderImage {IMG} at (65,853) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-      RenderImage {IMG} at (95,853) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-      RenderBlock (anonymous) at (0,843) size 769x41
</del><ins>+      RenderImage {IMG} at (5,897) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+      RenderImage {IMG} at (35,897) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+      RenderImage {IMG} at (65,897) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+      RenderImage {IMG} at (95,897) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+      RenderBlock (anonymous) at (0,887) size 769x41
</ins><span class="cx">         RenderBR {BR} at (120,0) size 0x18
</span><del>-      RenderBlock {HR} at (0,891) size 769x3 [border: (1px inset #000000)]
-layer at (13,426) size 20x20
-  RenderBlock (positioned) {DIV} at (13,425) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-layer at (43,426) size 20x20
-  RenderBlock (positioned) {DIV} at (43,425) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-layer at (73,426) size 20x20
-  RenderBlock (positioned) {DIV} at (73,425) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-layer at (103,426) size 20x20
-  RenderBlock (positioned) {DIV} at (103,425) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</del><ins>+      RenderBlock {HR} at (0,935) size 769x3 [border: (1px inset #000000)]
+layer at (13,470) size 20x20
+  RenderBlock (positioned) {DIV} at (13,469) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+layer at (43,470) size 20x20
+  RenderBlock (positioned) {DIV} at (43,469) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+layer at (73,470) size 20x20
+  RenderBlock (positioned) {DIV} at (73,469) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+layer at (103,470) size 20x20
+  RenderBlock (positioned) {DIV} at (103,469) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</ins><span class="cx">     RenderBR {BR} at (6,6) size 0x18
</span><span class="cx">     RenderBR {BR} at (6,24) size 0x18
</span><span class="cx">     RenderBR {BR} at (6,42) size 0x18
</span><del>-layer at (13,763) size 20x20
-  RenderImage {IMG} at (13,763) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-layer at (43,763) size 20x20
-  RenderImage {IMG} at (43,763) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-layer at (73,763) size 20x20
-  RenderImage {IMG} at (73,763) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
-layer at (103,763) size 20x20
-  RenderImage {IMG} at (103,763) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</del><ins>+layer at (13,807) size 20x20
+  RenderImage {IMG} at (13,807) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+layer at (43,807) size 20x20
+  RenderImage {IMG} at (43,807) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+layer at (73,807) size 20x20
+  RenderImage {IMG} at (73,807) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
+layer at (103,807) size 20x20
+  RenderImage {IMG} at (103,807) size 20x21 [color=#FFFFFF] [bgcolor=#FFA500] [border: (2px solid #000000)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacfastformstextfieldoverflowbyvalueupdateexpectedpng"></a>
<div class="binary"><h4>Deleted: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/forms/textfield-overflow-by-value-update-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolclientrectsexpectedpng"></a>
<div class="binary"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolclientrectsexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-expected.txt (178334 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-expected.txt        2015-01-13 09:32:17 UTC (rev 178334)
+++ releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-expected.txt        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -17,46 +17,46 @@
</span><span class="cx">         RenderBlock {SPAN} at (718,0) size 25x25 [border: (3px solid #0000FF7F)]
</span><span class="cx">         RenderText {#text} at (743,11) size 4x18
</span><span class="cx">           text run at (743,11) width 4: &quot;.&quot;
</span><del>-      RenderBlock (anonymous) at (0,45) size 784x330
-        RenderText {#text} at (116,72) size 4x18
-          text run at (116,72) width 4: &quot; &quot;
-        RenderText {#text} at (236,72) size 4x18
-          text run at (236,72) width 4: &quot; &quot;
-        RenderText {#text} at (356,72) size 4x18
-          text run at (356,72) width 4: &quot; &quot;
-        RenderText {#text} at (476,72) size 4x18
-          text run at (476,72) width 4: &quot; &quot;
-        RenderText {#text} at (596,72) size 4x18
-          text run at (596,72) width 4: &quot; &quot;
-        RenderText {#text} at (716,72) size 4x18
-          text run at (716,72) width 4: &quot; &quot;
-        RenderText {#text} at (116,192) size 4x18
-          text run at (116,192) width 4: &quot; &quot;
-        RenderText {#text} at (206,192) size 4x18
-          text run at (206,192) width 4: &quot; &quot;
-        RenderText {#text} at (296,192) size 4x18
-          text run at (296,192) width 4: &quot; &quot;
-        RenderText {#text} at (386,192) size 4x18
-          text run at (386,192) width 4: &quot; &quot;
-        RenderText {#text} at (476,192) size 4x18
-          text run at (476,192) width 4: &quot; &quot;
-        RenderText {#text} at (566,192) size 4x18
-          text run at (566,192) width 4: &quot; &quot;
-        RenderText {#text} at (656,192) size 4x18
-          text run at (656,192) width 4: &quot; &quot;
</del><ins>+      RenderBlock (anonymous) at (0,45) size 784x357
+        RenderText {#text} at (116,99) size 4x18
+          text run at (116,99) width 4: &quot; &quot;
+        RenderText {#text} at (236,99) size 4x18
+          text run at (236,99) width 4: &quot; &quot;
+        RenderText {#text} at (356,99) size 4x18
+          text run at (356,99) width 4: &quot; &quot;
+        RenderText {#text} at (476,99) size 4x18
+          text run at (476,99) width 4: &quot; &quot;
+        RenderText {#text} at (596,99) size 4x18
+          text run at (596,99) width 4: &quot; &quot;
+        RenderText {#text} at (716,99) size 4x18
+          text run at (716,99) width 4: &quot; &quot;
+        RenderText {#text} at (116,219) size 4x18
+          text run at (116,219) width 4: &quot; &quot;
+        RenderText {#text} at (206,219) size 4x18
+          text run at (206,219) width 4: &quot; &quot;
+        RenderText {#text} at (296,219) size 4x18
+          text run at (296,219) width 4: &quot; &quot;
+        RenderText {#text} at (386,219) size 4x18
+          text run at (386,219) width 4: &quot; &quot;
+        RenderText {#text} at (476,219) size 4x18
+          text run at (476,219) width 4: &quot; &quot;
+        RenderText {#text} at (566,219) size 4x18
+          text run at (566,219) width 4: &quot; &quot;
+        RenderText {#text} at (656,219) size 4x18
+          text run at (656,219) width 4: &quot; &quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-        RenderText {#text} at (86,312) size 4x18
-          text run at (86,312) width 4: &quot; &quot;
-        RenderText {#text} at (176,312) size 4x18
-          text run at (176,312) width 4: &quot; &quot;
-        RenderText {#text} at (266,312) size 4x18
-          text run at (266,312) width 4: &quot; &quot;
-        RenderText {#text} at (356,312) size 4x18
-          text run at (356,312) width 4: &quot; &quot;
-        RenderText {#text} at (446,312) size 4x18
-          text run at (446,312) width 4: &quot; &quot;
-        RenderText {#text} at (536,312) size 4x18
-          text run at (536,312) width 4: &quot; &quot;
</del><ins>+        RenderText {#text} at (86,339) size 4x18
+          text run at (86,339) width 4: &quot; &quot;
+        RenderText {#text} at (176,339) size 4x18
+          text run at (176,339) width 4: &quot; &quot;
+        RenderText {#text} at (266,339) size 4x18
+          text run at (266,339) width 4: &quot; &quot;
+        RenderText {#text} at (356,339) size 4x18
+          text run at (356,339) width 4: &quot; &quot;
+        RenderText {#text} at (446,339) size 4x18
+          text run at (446,339) width 4: &quot; &quot;
+        RenderText {#text} at (536,339) size 4x18
+          text run at (536,339) width 4: &quot; &quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><span class="cx"> layer at (8,63) size 116x66
</span><span class="cx">   RenderBlock {DIV} at (0,10) size 116x66 [color=#ADD8E6] [border: (3px solid #000000)]
</span><span class="lines">@@ -104,10 +104,10 @@
</span><span class="cx">       RenderText {#text} at (0,25) size 25x50
</span><span class="cx">         text run at (0,25) width 25: &quot;y&quot;
</span><span class="cx">         text run at (0,50) width 25: &quot;z&quot;
</span><del>-layer at (488,63) size 116x66
-  RenderBlock {DIV} at (480,10) size 116x66 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (488,81) size 116x66
+  RenderBlock {DIV} at (480,28) size 116x66 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 100x50
</span><del>-layer at (496,71) size 48x79
</del><ins>+layer at (496,89) size 48x79
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 48x79
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 48x25
</span><span class="cx">       RenderBR {BR} at (0,0) size 0x25
</span><span class="lines">@@ -117,36 +117,36 @@
</span><span class="cx">         RenderFlexibleBox {DIV} at (0,0) size 25x25
</span><span class="cx">           RenderBlock {DIV} at (0,12) size 25x0
</span><span class="cx">             RenderBlock {DIV} at (0,0) size 25x0
</span><del>-layer at (608,63) size 116x66
-  RenderBlock {DIV} at (600,10) size 116x66 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (608,83) size 116x66
+  RenderBlock {DIV} at (600,30) size 116x66 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 100x50
</span><del>-layer at (616,71) size 48x75
</del><ins>+layer at (616,91) size 48x75
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 48x75
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 48x25
</span><span class="cx">       RenderBR {BR} at (0,0) size 0x25
</span><span class="cx">     RenderBlock {DIV} at (0,25) size 48x50
</span><span class="cx">       RenderBR {BR} at (0,0) size 0x25
</span><span class="cx">       RenderImage {IMG} at (0,25) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (8,183) size 116x66
-  RenderBlock {DIV} at (0,130) size 116x66 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (8,210) size 116x66
+  RenderBlock {DIV} at (0,157) size 116x66 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 100x50
</span><del>-layer at (16,191) size 48x65
</del><ins>+layer at (16,218) size 48x65
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 48x65
</span><span class="cx">     RenderBlock {DIV} at (0,40) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (138,143) size 66x116
-  RenderBlock {DIV} at (130,90) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (138,170) size 66x116
+  RenderBlock {DIV} at (130,117) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (146,151) size 100x48
</del><ins>+layer at (146,178) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">     RenderText {#text} at (25,0) size 75x25
</span><span class="cx">       text run at (25,0) width 25: &quot;x&quot;
</span><span class="cx">       text run at (50,0) width 25: &quot;y&quot;
</span><span class="cx">       text run at (75,0) width 25: &quot;z&quot;
</span><del>-layer at (228,143) size 66x116
-  RenderBlock {DIV} at (220,90) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (228,170) size 66x116
+  RenderBlock {DIV} at (220,117) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (236,151) size 100x48
</del><ins>+layer at (236,178) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">     RenderInline {SPAN} at (0,0) size 75x25
</span><span class="lines">@@ -155,10 +155,10 @@
</span><span class="cx">         text run at (50,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (75,0) width 25: &quot;z&quot;
</span><span class="cx">     RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (318,143) size 66x116
-  RenderBlock {DIV} at (310,90) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (318,170) size 66x116
+  RenderBlock {DIV} at (310,117) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (326,151) size 100x48
</del><ins>+layer at (326,178) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="lines">@@ -167,10 +167,10 @@
</span><span class="cx">         text run at (0,0) width 25: &quot;x&quot;
</span><span class="cx">         text run at (25,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (50,0) width 25: &quot;z&quot;
</span><del>-layer at (408,143) size 66x116
-  RenderBlock {DIV} at (400,90) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (408,170) size 66x116
+  RenderBlock {DIV} at (400,117) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (416,151) size 100x48
</del><ins>+layer at (416,178) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="lines">@@ -179,10 +179,10 @@
</span><span class="cx">       RenderText {#text} at (25,0) size 50x25
</span><span class="cx">         text run at (25,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (50,0) width 25: &quot;z&quot;
</span><del>-layer at (498,143) size 66x116
-  RenderBlock {DIV} at (490,90) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (498,170) size 66x116
+  RenderBlock {DIV} at (490,117) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (506,151) size 79x48
</del><ins>+layer at (506,178) size 79x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 79x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="lines">@@ -192,36 +192,36 @@
</span><span class="cx">         RenderFlexibleBox {DIV} at (0,0) size 25x25
</span><span class="cx">           RenderBlock {DIV} at (0,12) size 25x0
</span><span class="cx">             RenderBlock {DIV} at (0,0) size 25x0
</span><del>-layer at (588,143) size 66x116
-  RenderBlock {DIV} at (580,90) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (588,170) size 66x116
+  RenderBlock {DIV} at (580,117) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (596,151) size 75x48
</del><ins>+layer at (596,178) size 75x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 75x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">     RenderBlock {DIV} at (25,0) size 50x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">       RenderImage {IMG} at (25,0) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (678,143) size 66x116
-  RenderBlock {DIV} at (670,90) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (678,170) size 66x116
+  RenderBlock {DIV} at (670,117) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (686,151) size 65x48
</del><ins>+layer at (686,178) size 65x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 65x48
</span><span class="cx">     RenderBlock {DIV} at (40,0) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (18,263) size 66x116
-  RenderBlock {DIV} at (10,210) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (18,290) size 66x116
+  RenderBlock {DIV} at (10,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (-24,271) size 100x48 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (-24,298) size 100x48 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">     RenderText {#text} at (25,0) size 75x25
</span><span class="cx">       text run at (25,0) width 25: &quot;x&quot;
</span><span class="cx">       text run at (50,0) width 25: &quot;y&quot;
</span><span class="cx">       text run at (75,0) width 25: &quot;z&quot;
</span><del>-layer at (108,263) size 66x116
-  RenderBlock {DIV} at (100,210) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (108,290) size 66x116
+  RenderBlock {DIV} at (100,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (66,271) size 100x48
</del><ins>+layer at (66,298) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">     RenderInline {SPAN} at (0,0) size 75x25
</span><span class="lines">@@ -230,10 +230,10 @@
</span><span class="cx">         text run at (50,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (75,0) width 25: &quot;z&quot;
</span><span class="cx">     RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (198,263) size 66x116
-  RenderBlock {DIV} at (190,210) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (198,290) size 66x116
+  RenderBlock {DIV} at (190,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (156,271) size 100x48
</del><ins>+layer at (156,298) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="lines">@@ -242,10 +242,10 @@
</span><span class="cx">         text run at (0,0) width 25: &quot;x&quot;
</span><span class="cx">         text run at (25,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (50,0) width 25: &quot;z&quot;
</span><del>-layer at (288,263) size 66x116
-  RenderBlock {DIV} at (280,210) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (288,290) size 66x116
+  RenderBlock {DIV} at (280,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (246,271) size 100x48
</del><ins>+layer at (246,298) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="lines">@@ -254,10 +254,10 @@
</span><span class="cx">       RenderText {#text} at (25,0) size 50x25
</span><span class="cx">         text run at (25,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (50,0) width 25: &quot;z&quot;
</span><del>-layer at (378,263) size 66x116
-  RenderBlock {DIV} at (370,210) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (378,290) size 66x116
+  RenderBlock {DIV} at (370,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (357,271) size 79x48
</del><ins>+layer at (357,298) size 79x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 79x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="lines">@@ -267,20 +267,20 @@
</span><span class="cx">         RenderFlexibleBox {DIV} at (0,0) size 25x25
</span><span class="cx">           RenderBlock {DIV} at (0,12) size 25x0
</span><span class="cx">             RenderBlock {DIV} at (0,0) size 25x0
</span><del>-layer at (468,263) size 66x116
-  RenderBlock {DIV} at (460,210) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (468,290) size 66x116
+  RenderBlock {DIV} at (460,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (451,271) size 75x48
</del><ins>+layer at (451,298) size 75x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 75x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">     RenderBlock {DIV} at (25,0) size 50x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">       RenderImage {IMG} at (25,0) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (558,263) size 66x116
-  RenderBlock {DIV} at (550,210) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (558,290) size 66x116
+  RenderBlock {DIV} at (550,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (551,271) size 65x48
</del><ins>+layer at (551,298) size 65x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 65x48
</span><span class="cx">     RenderBlock {DIV} at (40,0) size 25x25 [bgcolor=#ADD8E6]
</span><span class="cx"> layer at (16,96) size 25x25
</span><span class="lines">@@ -305,65 +305,65 @@
</span><span class="cx">   RenderBlock (positioned) {DIV} at (428,71) size 26x25 [border: (3px solid #0000FF7F)]
</span><span class="cx"> layer at (428,96) size 26x25
</span><span class="cx">   RenderBlock (positioned) {DIV} at (428,96) size 26x25 [border: (3px solid #0000FF7F)]
</span><del>-layer at (550,73) size 26x25
-  RenderBlock (positioned) {DIV} at (550,73) size 26x25 [border: (3px solid #0000FF7F)]
-layer at (668,71) size 26x25
-  RenderBlock (positioned) {DIV} at (668,71) size 26x25 [border: (3px solid #0000FF7F)]
-layer at (68,181) size 26x25
-  RenderBlock (positioned) {DIV} at (68,181) size 26x25 [border: (3px solid #0000FF7F)]
-layer at (171,151) size 25x25
-  RenderBlock (positioned) {DIV} at (171,151) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (146,203) size 25x26
-  RenderBlock (positioned) {DIV} at (146,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (171,203) size 25x26
-  RenderBlock (positioned) {DIV} at (171,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (261,151) size 25x25
-  RenderBlock (positioned) {DIV} at (261,151) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (236,203) size 25x26
-  RenderBlock (positioned) {DIV} at (236,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (261,203) size 25x26
-  RenderBlock (positioned) {DIV} at (261,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (351,151) size 25x25
-  RenderBlock (positioned) {DIV} at (351,151) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (326,203) size 25x26
-  RenderBlock (positioned) {DIV} at (326,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (351,203) size 25x26
-  RenderBlock (positioned) {DIV} at (351,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (416,203) size 25x26
-  RenderBlock (positioned) {DIV} at (416,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (441,203) size 25x26
-  RenderBlock (positioned) {DIV} at (441,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (508,205) size 25x26
-  RenderBlock (positioned) {DIV} at (508,205) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (596,203) size 25x26
-  RenderBlock (positioned) {DIV} at (596,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (676,203) size 25x26
-  RenderBlock (positioned) {DIV} at (676,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (26,271) size 25x25
-  RenderBlock (positioned) {DIV} at (26,271) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (51,323) size 25x26
-  RenderBlock (positioned) {DIV} at (51,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (26,323) size 25x26
-  RenderBlock (positioned) {DIV} at (26,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (116,271) size 25x25
-  RenderBlock (positioned) {DIV} at (116,271) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (141,323) size 25x26
-  RenderBlock (positioned) {DIV} at (141,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (116,323) size 25x26
-  RenderBlock (positioned) {DIV} at (116,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (206,271) size 25x25
-  RenderBlock (positioned) {DIV} at (206,271) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (231,323) size 25x26
-  RenderBlock (positioned) {DIV} at (231,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (206,323) size 25x26
-  RenderBlock (positioned) {DIV} at (206,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (321,323) size 25x26
-  RenderBlock (positioned) {DIV} at (321,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (296,323) size 25x26
-  RenderBlock (positioned) {DIV} at (296,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (409,325) size 25x26
-  RenderBlock (positioned) {DIV} at (409,325) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (501,323) size 25x26
-  RenderBlock (positioned) {DIV} at (501,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (601,323) size 25x26
-  RenderBlock (positioned) {DIV} at (601,323) size 25x26 [border: (3px solid #0000FF7F)]
</del><ins>+layer at (550,91) size 26x25
+  RenderBlock (positioned) {DIV} at (550,91) size 26x25 [border: (3px solid #0000FF7F)]
+layer at (668,91) size 26x25
+  RenderBlock (positioned) {DIV} at (668,91) size 26x25 [border: (3px solid #0000FF7F)]
+layer at (68,208) size 26x25
+  RenderBlock (positioned) {DIV} at (68,208) size 26x25 [border: (3px solid #0000FF7F)]
+layer at (171,178) size 25x25
+  RenderBlock (positioned) {DIV} at (171,178) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (146,230) size 25x26
+  RenderBlock (positioned) {DIV} at (146,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (171,230) size 25x26
+  RenderBlock (positioned) {DIV} at (171,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (261,178) size 25x25
+  RenderBlock (positioned) {DIV} at (261,178) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (236,230) size 25x26
+  RenderBlock (positioned) {DIV} at (236,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (261,230) size 25x26
+  RenderBlock (positioned) {DIV} at (261,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (351,178) size 25x25
+  RenderBlock (positioned) {DIV} at (351,178) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (326,230) size 25x26
+  RenderBlock (positioned) {DIV} at (326,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (351,230) size 25x26
+  RenderBlock (positioned) {DIV} at (351,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (416,230) size 25x26
+  RenderBlock (positioned) {DIV} at (416,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (441,230) size 25x26
+  RenderBlock (positioned) {DIV} at (441,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (508,232) size 25x26
+  RenderBlock (positioned) {DIV} at (508,232) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (596,230) size 25x26
+  RenderBlock (positioned) {DIV} at (596,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (676,230) size 25x26
+  RenderBlock (positioned) {DIV} at (676,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (26,298) size 25x25
+  RenderBlock (positioned) {DIV} at (26,298) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (51,350) size 25x26
+  RenderBlock (positioned) {DIV} at (51,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (26,350) size 25x26
+  RenderBlock (positioned) {DIV} at (26,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (116,298) size 25x25
+  RenderBlock (positioned) {DIV} at (116,298) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (141,350) size 25x26
+  RenderBlock (positioned) {DIV} at (141,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (116,350) size 25x26
+  RenderBlock (positioned) {DIV} at (116,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (206,298) size 25x25
+  RenderBlock (positioned) {DIV} at (206,298) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (231,350) size 25x26
+  RenderBlock (positioned) {DIV} at (231,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (206,350) size 25x26
+  RenderBlock (positioned) {DIV} at (206,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (321,350) size 25x26
+  RenderBlock (positioned) {DIV} at (321,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (296,350) size 25x26
+  RenderBlock (positioned) {DIV} at (296,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (409,352) size 25x26
+  RenderBlock (positioned) {DIV} at (409,352) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (501,350) size 25x26
+  RenderBlock (positioned) {DIV} at (501,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (601,350) size 25x26
+  RenderBlock (positioned) {DIV} at (601,350) size 25x26 [border: (3px solid #0000FF7F)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolclientrectsspannerscomplexexpectedpng"></a>
<div class="binary"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-spanners-complex-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolclientrectsspannerscomplexexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-spanners-complex-expected.txt (178334 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-spanners-complex-expected.txt        2015-01-13 09:32:17 UTC (rev 178334)
+++ releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-spanners-complex-expected.txt        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -17,45 +17,45 @@
</span><span class="cx">         RenderBlock {SPAN} at (718,0) size 25x25 [border: (3px solid #0000FF7F)]
</span><span class="cx">         RenderText {#text} at (743,11) size 4x18
</span><span class="cx">           text run at (743,11) width 4: &quot;.&quot;
</span><del>-      RenderBlock (anonymous) at (0,45) size 784x514
-        RenderText {#text} at (116,112) size 4x18
-          text run at (116,112) width 4: &quot; &quot;
-        RenderText {#text} at (236,112) size 4x18
-          text run at (236,112) width 4: &quot; &quot;
-        RenderText {#text} at (356,112) size 4x18
-          text run at (356,112) width 4: &quot; &quot;
-        RenderText {#text} at (476,112) size 4x18
-          text run at (476,112) width 4: &quot; &quot;
-        RenderText {#text} at (596,112) size 4x18
-          text run at (596,112) width 4: &quot; &quot;
-        RenderText {#text} at (716,112) size 4x18
-          text run at (716,112) width 4: &quot; &quot;
-        RenderText {#text} at (116,256) size 4x18
-          text run at (116,256) width 4: &quot; &quot;
-        RenderText {#text} at (246,256) size 4x18
-          text run at (246,256) width 4: &quot; &quot;
-        RenderText {#text} at (376,256) size 4x18
-          text run at (376,256) width 4: &quot; &quot;
-        RenderText {#text} at (506,256) size 4x18
-          text run at (506,256) width 4: &quot; &quot;
-        RenderText {#text} at (636,256) size 4x18
-          text run at (636,256) width 4: &quot; &quot;
</del><ins>+      RenderBlock (anonymous) at (0,45) size 784x516
+        RenderText {#text} at (116,114) size 4x18
+          text run at (116,114) width 4: &quot; &quot;
+        RenderText {#text} at (236,114) size 4x18
+          text run at (236,114) width 4: &quot; &quot;
+        RenderText {#text} at (356,114) size 4x18
+          text run at (356,114) width 4: &quot; &quot;
+        RenderText {#text} at (476,114) size 4x18
+          text run at (476,114) width 4: &quot; &quot;
+        RenderText {#text} at (596,114) size 4x18
+          text run at (596,114) width 4: &quot; &quot;
+        RenderText {#text} at (716,114) size 4x18
+          text run at (716,114) width 4: &quot; &quot;
+        RenderText {#text} at (116,258) size 4x18
+          text run at (116,258) width 4: &quot; &quot;
+        RenderText {#text} at (246,258) size 4x18
+          text run at (246,258) width 4: &quot; &quot;
+        RenderText {#text} at (376,258) size 4x18
+          text run at (376,258) width 4: &quot; &quot;
+        RenderText {#text} at (506,258) size 4x18
+          text run at (506,258) width 4: &quot; &quot;
+        RenderText {#text} at (636,258) size 4x18
+          text run at (636,258) width 4: &quot; &quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-        RenderText {#text} at (126,376) size 4x18
-          text run at (126,376) width 4: &quot; &quot;
-        RenderText {#text} at (256,376) size 4x18
-          text run at (256,376) width 4: &quot; &quot;
-        RenderText {#text} at (386,376) size 4x18
-          text run at (386,376) width 4: &quot; &quot;
-        RenderText {#text} at (516,376) size 4x18
-          text run at (516,376) width 4: &quot; &quot;
-        RenderText {#text} at (646,376) size 4x18
-          text run at (646,376) width 4: &quot; &quot;
</del><ins>+        RenderText {#text} at (126,378) size 4x18
+          text run at (126,378) width 4: &quot; &quot;
+        RenderText {#text} at (256,378) size 4x18
+          text run at (256,378) width 4: &quot; &quot;
+        RenderText {#text} at (386,378) size 4x18
+          text run at (386,378) width 4: &quot; &quot;
+        RenderText {#text} at (516,378) size 4x18
+          text run at (516,378) width 4: &quot; &quot;
+        RenderText {#text} at (646,378) size 4x18
+          text run at (646,378) width 4: &quot; &quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-        RenderText {#text} at (126,496) size 4x18
-          text run at (126,496) width 4: &quot; &quot;
-        RenderText {#text} at (256,496) size 4x18
-          text run at (256,496) width 4: &quot; &quot;
</del><ins>+        RenderText {#text} at (126,498) size 4x18
+          text run at (126,498) width 4: &quot; &quot;
+        RenderText {#text} at (256,498) size 4x18
+          text run at (256,498) width 4: &quot; &quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><span class="cx"> layer at (8,63) size 116x106
</span><span class="cx">   RenderBlock {DIV} at (0,10) size 116x106 [color=#ADD8E6] [border: (3px solid #000000)]
</span><span class="lines">@@ -121,12 +121,12 @@
</span><span class="cx">       RenderText {#text} at (0,30) size 25x50
</span><span class="cx">         text run at (0,30) width 25: &quot;y&quot;
</span><span class="cx">         text run at (0,55) width 25: &quot;z&quot;
</span><del>-layer at (488,63) size 116x106
-  RenderBlock {DIV} at (480,10) size 116x106 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (488,81) size 116x106
+  RenderBlock {DIV} at (480,28) size 116x106 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 100x5
</span><span class="cx">     RenderBlock {DIV} at (8,13) size 100x30 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (8,43) size 100x55
</span><del>-layer at (496,71) size 48x94
</del><ins>+layer at (496,89) size 48x94
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 48x94
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 48x10 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,10) size 0x0
</span><span class="lines">@@ -138,12 +138,12 @@
</span><span class="cx">         RenderFlexibleBox {DIV} at (0,0) size 25x25
</span><span class="cx">           RenderBlock {DIV} at (0,12) size 25x0
</span><span class="cx">             RenderBlock {DIV} at (0,0) size 25x0
</span><del>-layer at (608,81) size 116x106
-  RenderBlock {DIV} at (600,28) size 116x106 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (608,83) size 116x106
+  RenderBlock {DIV} at (600,30) size 116x106 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 100x5
</span><span class="cx">     RenderBlock {DIV} at (8,13) size 100x30 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (8,43) size 100x55
</span><del>-layer at (616,89) size 48x90
</del><ins>+layer at (616,91) size 48x90
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 48x90
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 48x10 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,10) size 0x0
</span><span class="lines">@@ -152,22 +152,22 @@
</span><span class="cx">     RenderBlock {DIV} at (0,35) size 48x55
</span><span class="cx">       RenderBR {BR} at (0,0) size 0x25
</span><span class="cx">       RenderImage {IMG} at (0,30) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (8,207) size 116x106
-  RenderBlock {DIV} at (0,154) size 116x106 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (8,209) size 116x106
+  RenderBlock {DIV} at (0,156) size 116x106 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 100x5
</span><span class="cx">     RenderBlock {DIV} at (8,13) size 100x30 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (8,43) size 100x55
</span><del>-layer at (16,215) size 48x75
</del><ins>+layer at (16,217) size 48x75
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 48x75
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 48x10 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,10) size 0x0
</span><span class="cx">     RenderBlock {DIV} at (0,50) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (138,207) size 106x116
-  RenderBlock {DIV} at (130,154) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (138,209) size 106x116
+  RenderBlock {DIV} at (130,156) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 5x100
</span><span class="cx">     RenderBlock {DIV} at (13,8) size 30x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (43,8) size 55x100
</span><del>-layer at (146,215) size 115x48
</del><ins>+layer at (146,217) size 115x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 115x48
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 10x48 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (10,0) size 0x0
</span><span class="lines">@@ -177,12 +177,12 @@
</span><span class="cx">         text run at (25,0) width 25: &quot;x&quot;
</span><span class="cx">         text run at (55,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (80,0) width 25: &quot;z&quot;
</span><del>-layer at (268,207) size 106x116
-  RenderBlock {DIV} at (260,154) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (268,209) size 106x116
+  RenderBlock {DIV} at (260,156) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 5x100
</span><span class="cx">     RenderBlock {DIV} at (13,8) size 30x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (43,8) size 55x100
</span><del>-layer at (276,215) size 115x48
</del><ins>+layer at (276,217) size 115x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 115x48
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 10x48 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (10,0) size 0x0
</span><span class="lines">@@ -194,12 +194,12 @@
</span><span class="cx">           text run at (55,0) width 25: &quot;y&quot;
</span><span class="cx">           text run at (80,0) width 25: &quot;z&quot;
</span><span class="cx">       RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (398,207) size 106x116
-  RenderBlock {DIV} at (390,154) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (398,209) size 106x116
+  RenderBlock {DIV} at (390,156) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 5x100
</span><span class="cx">     RenderBlock {DIV} at (13,8) size 30x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (43,8) size 55x100
</span><del>-layer at (406,215) size 115x48
</del><ins>+layer at (406,217) size 115x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 115x48
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 10x48 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (10,0) size 0x0
</span><span class="lines">@@ -210,12 +210,12 @@
</span><span class="cx">         text run at (0,0) width 25: &quot;x&quot;
</span><span class="cx">         text run at (30,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (55,0) width 25: &quot;z&quot;
</span><del>-layer at (528,207) size 106x116
-  RenderBlock {DIV} at (520,154) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (528,209) size 106x116
+  RenderBlock {DIV} at (520,156) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 5x100
</span><span class="cx">     RenderBlock {DIV} at (13,8) size 30x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (43,8) size 55x100
</span><del>-layer at (536,215) size 115x48
</del><ins>+layer at (536,217) size 115x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 115x48
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 10x48 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (10,0) size 0x0
</span><span class="lines">@@ -226,12 +226,12 @@
</span><span class="cx">       RenderText {#text} at (30,0) size 50x25
</span><span class="cx">         text run at (30,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (55,0) width 25: &quot;z&quot;
</span><del>-layer at (658,207) size 106x116
-  RenderBlock {DIV} at (650,154) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (658,209) size 106x116
+  RenderBlock {DIV} at (650,156) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 5x100
</span><span class="cx">     RenderBlock {DIV} at (13,8) size 30x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (43,8) size 55x100
</span><del>-layer at (666,215) size 94x48
</del><ins>+layer at (666,217) size 94x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 94x48
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 10x48 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (10,0) size 0x0
</span><span class="lines">@@ -243,12 +243,12 @@
</span><span class="cx">         RenderFlexibleBox {DIV} at (0,0) size 25x25
</span><span class="cx">           RenderBlock {DIV} at (0,12) size 25x0
</span><span class="cx">             RenderBlock {DIV} at (0,0) size 25x0
</span><del>-layer at (18,327) size 106x116
-  RenderBlock {DIV} at (10,274) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (18,329) size 106x116
+  RenderBlock {DIV} at (10,276) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 5x100
</span><span class="cx">     RenderBlock {DIV} at (13,8) size 30x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (43,8) size 55x100
</span><del>-layer at (26,335) size 90x48
</del><ins>+layer at (26,337) size 90x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 90x48
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 10x48 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (10,0) size 0x0
</span><span class="lines">@@ -257,22 +257,22 @@
</span><span class="cx">     RenderBlock {DIV} at (35,0) size 55x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">       RenderImage {IMG} at (30,0) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (148,327) size 106x116
-  RenderBlock {DIV} at (140,274) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (148,329) size 106x116
+  RenderBlock {DIV} at (140,276) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 5x100
</span><span class="cx">     RenderBlock {DIV} at (13,8) size 30x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (43,8) size 55x100
</span><del>-layer at (156,335) size 75x48
</del><ins>+layer at (156,337) size 75x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 75x48
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 10x48 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (10,0) size 0x0
</span><span class="cx">     RenderBlock {DIV} at (50,0) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (278,327) size 106x116
-  RenderBlock {DIV} at (270,274) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (278,329) size 106x116
+  RenderBlock {DIV} at (270,276) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 5x100
</span><span class="cx">     RenderBlock {DIV} at (13,8) size 30x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (43,8) size 55x100
</span><del>-layer at (261,335) size 115x48
</del><ins>+layer at (261,337) size 115x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 115x48
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 10x48 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (10,0) size 0x0
</span><span class="lines">@@ -282,12 +282,12 @@
</span><span class="cx">         text run at (25,0) width 25: &quot;x&quot;
</span><span class="cx">         text run at (55,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (80,0) width 25: &quot;z&quot;
</span><del>-layer at (408,327) size 106x116
-  RenderBlock {DIV} at (400,274) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (408,329) size 106x116
+  RenderBlock {DIV} at (400,276) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 5x100
</span><span class="cx">     RenderBlock {DIV} at (13,8) size 30x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (43,8) size 55x100
</span><del>-layer at (391,335) size 115x48
</del><ins>+layer at (391,337) size 115x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 115x48
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 10x48 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (10,0) size 0x0
</span><span class="lines">@@ -299,12 +299,12 @@
</span><span class="cx">           text run at (55,0) width 25: &quot;y&quot;
</span><span class="cx">           text run at (80,0) width 25: &quot;z&quot;
</span><span class="cx">       RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (538,327) size 106x116
-  RenderBlock {DIV} at (530,274) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (538,329) size 106x116
+  RenderBlock {DIV} at (530,276) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 5x100
</span><span class="cx">     RenderBlock {DIV} at (13,8) size 30x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (43,8) size 55x100
</span><del>-layer at (521,335) size 115x48
</del><ins>+layer at (521,337) size 115x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 115x48
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 10x48 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (10,0) size 0x0
</span><span class="lines">@@ -315,12 +315,12 @@
</span><span class="cx">         text run at (0,0) width 25: &quot;x&quot;
</span><span class="cx">         text run at (30,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (55,0) width 25: &quot;z&quot;
</span><del>-layer at (668,327) size 106x116
-  RenderBlock {DIV} at (660,274) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (668,329) size 106x116
+  RenderBlock {DIV} at (660,276) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 5x100
</span><span class="cx">     RenderBlock {DIV} at (13,8) size 30x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (43,8) size 55x100
</span><del>-layer at (651,335) size 115x48
</del><ins>+layer at (651,337) size 115x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 115x48
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 10x48 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (10,0) size 0x0
</span><span class="lines">@@ -331,12 +331,12 @@
</span><span class="cx">       RenderText {#text} at (30,0) size 50x25
</span><span class="cx">         text run at (30,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (55,0) width 25: &quot;z&quot;
</span><del>-layer at (18,447) size 106x116
-  RenderBlock {DIV} at (10,394) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (18,449) size 106x116
+  RenderBlock {DIV} at (10,396) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 5x100
</span><span class="cx">     RenderBlock {DIV} at (13,8) size 30x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (43,8) size 55x100
</span><del>-layer at (22,455) size 94x48
</del><ins>+layer at (22,457) size 94x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 94x48
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 10x48 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (10,0) size 0x0
</span><span class="lines">@@ -348,12 +348,12 @@
</span><span class="cx">         RenderFlexibleBox {DIV} at (0,0) size 25x25
</span><span class="cx">           RenderBlock {DIV} at (0,12) size 25x0
</span><span class="cx">             RenderBlock {DIV} at (0,0) size 25x0
</span><del>-layer at (148,447) size 106x116
-  RenderBlock {DIV} at (140,394) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (148,449) size 106x116
+  RenderBlock {DIV} at (140,396) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 5x100
</span><span class="cx">     RenderBlock {DIV} at (13,8) size 30x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (43,8) size 55x100
</span><del>-layer at (156,455) size 90x48
</del><ins>+layer at (156,457) size 90x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 90x48
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 10x48 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (10,0) size 0x0
</span><span class="lines">@@ -362,12 +362,12 @@
</span><span class="cx">     RenderBlock {DIV} at (35,0) size 55x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">       RenderImage {IMG} at (30,0) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (278,447) size 106x116
-  RenderBlock {DIV} at (270,394) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (278,449) size 106x116
+  RenderBlock {DIV} at (270,396) size 106x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 5x100
</span><span class="cx">     RenderBlock {DIV} at (13,8) size 30x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (43,8) size 55x100
</span><del>-layer at (301,455) size 75x48
</del><ins>+layer at (301,457) size 75x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 75x48
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 10x48 [bgcolor=#000080]
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (10,0) size 0x0
</span><span class="lines">@@ -394,65 +394,65 @@
</span><span class="cx">   RenderBlock (positioned) {DIV} at (428,106) size 26x25 [border: (3px solid #0000FF7F)]
</span><span class="cx"> layer at (428,131) size 26x25
</span><span class="cx">   RenderBlock (positioned) {DIV} at (428,131) size 26x25 [border: (3px solid #0000FF7F)]
</span><del>-layer at (550,108) size 26x25
-  RenderBlock (positioned) {DIV} at (550,108) size 26x25 [border: (3px solid #0000FF7F)]
-layer at (668,124) size 26x25
-  RenderBlock (positioned) {DIV} at (668,124) size 26x25 [border: (3px solid #0000FF7F)]
-layer at (16,290) size 25x25
-  RenderBlock (positioned) {DIV} at (16,290) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (206,215) size 25x25
-  RenderBlock (positioned) {DIV} at (206,215) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (181,267) size 25x26
-  RenderBlock (positioned) {DIV} at (181,267) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (206,267) size 25x26
-  RenderBlock (positioned) {DIV} at (206,267) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (336,215) size 25x25
-  RenderBlock (positioned) {DIV} at (336,215) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (311,267) size 25x26
-  RenderBlock (positioned) {DIV} at (311,267) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (336,267) size 25x26
-  RenderBlock (positioned) {DIV} at (336,267) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (466,215) size 25x25
-  RenderBlock (positioned) {DIV} at (466,215) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (441,267) size 25x26
-  RenderBlock (positioned) {DIV} at (441,267) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (466,267) size 25x26
-  RenderBlock (positioned) {DIV} at (466,267) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (571,267) size 25x26
-  RenderBlock (positioned) {DIV} at (571,267) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (596,267) size 25x26
-  RenderBlock (positioned) {DIV} at (596,267) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (703,269) size 25x26
-  RenderBlock (positioned) {DIV} at (703,269) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (61,387) size 25x26
-  RenderBlock (positioned) {DIV} at (61,387) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (231,335) size 25x25
-  RenderBlock (positioned) {DIV} at (231,335) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (291,335) size 25x25
-  RenderBlock (positioned) {DIV} at (291,335) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (316,387) size 25x26
-  RenderBlock (positioned) {DIV} at (316,387) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (291,387) size 25x26
-  RenderBlock (positioned) {DIV} at (291,387) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (421,335) size 25x25
-  RenderBlock (positioned) {DIV} at (421,335) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (446,387) size 25x26
-  RenderBlock (positioned) {DIV} at (446,387) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (421,387) size 25x26
-  RenderBlock (positioned) {DIV} at (421,387) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (551,335) size 25x25
-  RenderBlock (positioned) {DIV} at (551,335) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (576,387) size 25x26
-  RenderBlock (positioned) {DIV} at (576,387) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (551,387) size 25x26
-  RenderBlock (positioned) {DIV} at (551,387) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (706,387) size 25x26
-  RenderBlock (positioned) {DIV} at (706,387) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (681,387) size 25x26
-  RenderBlock (positioned) {DIV} at (681,387) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (54,509) size 25x26
-  RenderBlock (positioned) {DIV} at (54,509) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (186,507) size 25x26
-  RenderBlock (positioned) {DIV} at (186,507) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (276,455) size 25x25
-  RenderBlock (positioned) {DIV} at (276,455) size 25x25 [border: (3px solid #0000FF7F)]
</del><ins>+layer at (550,126) size 26x25
+  RenderBlock (positioned) {DIV} at (550,126) size 26x25 [border: (3px solid #0000FF7F)]
+layer at (668,126) size 26x25
+  RenderBlock (positioned) {DIV} at (668,126) size 26x25 [border: (3px solid #0000FF7F)]
+layer at (16,292) size 25x25
+  RenderBlock (positioned) {DIV} at (16,292) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (206,217) size 25x25
+  RenderBlock (positioned) {DIV} at (206,217) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (181,269) size 25x26
+  RenderBlock (positioned) {DIV} at (181,269) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (206,269) size 25x26
+  RenderBlock (positioned) {DIV} at (206,269) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (336,217) size 25x25
+  RenderBlock (positioned) {DIV} at (336,217) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (311,269) size 25x26
+  RenderBlock (positioned) {DIV} at (311,269) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (336,269) size 25x26
+  RenderBlock (positioned) {DIV} at (336,269) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (466,217) size 25x25
+  RenderBlock (positioned) {DIV} at (466,217) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (441,269) size 25x26
+  RenderBlock (positioned) {DIV} at (441,269) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (466,269) size 25x26
+  RenderBlock (positioned) {DIV} at (466,269) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (571,269) size 25x26
+  RenderBlock (positioned) {DIV} at (571,269) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (596,269) size 25x26
+  RenderBlock (positioned) {DIV} at (596,269) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (703,271) size 25x26
+  RenderBlock (positioned) {DIV} at (703,271) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (61,389) size 25x26
+  RenderBlock (positioned) {DIV} at (61,389) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (231,337) size 25x25
+  RenderBlock (positioned) {DIV} at (231,337) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (291,337) size 25x25
+  RenderBlock (positioned) {DIV} at (291,337) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (316,389) size 25x26
+  RenderBlock (positioned) {DIV} at (316,389) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (291,389) size 25x26
+  RenderBlock (positioned) {DIV} at (291,389) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (421,337) size 25x25
+  RenderBlock (positioned) {DIV} at (421,337) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (446,389) size 25x26
+  RenderBlock (positioned) {DIV} at (446,389) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (421,389) size 25x26
+  RenderBlock (positioned) {DIV} at (421,389) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (551,337) size 25x25
+  RenderBlock (positioned) {DIV} at (551,337) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (576,389) size 25x26
+  RenderBlock (positioned) {DIV} at (576,389) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (551,389) size 25x26
+  RenderBlock (positioned) {DIV} at (551,389) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (706,389) size 25x26
+  RenderBlock (positioned) {DIV} at (706,389) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (681,389) size 25x26
+  RenderBlock (positioned) {DIV} at (681,389) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (54,511) size 25x26
+  RenderBlock (positioned) {DIV} at (54,511) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (186,509) size 25x26
+  RenderBlock (positioned) {DIV} at (186,509) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (276,457) size 25x25
+  RenderBlock (positioned) {DIV} at (276,457) size 25x25 [border: (3px solid #0000FF7F)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolclientrectsspannersexpectedpng"></a>
<div class="binary"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-spanners-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolclientrectsspannersexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-spanners-expected.txt (178334 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-spanners-expected.txt        2015-01-13 09:32:17 UTC (rev 178334)
+++ releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/client-rects-spanners-expected.txt        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -17,47 +17,47 @@
</span><span class="cx">         RenderBlock {SPAN} at (718,0) size 25x25 [border: (3px solid #0000FF7F)]
</span><span class="cx">         RenderText {#text} at (743,11) size 4x18
</span><span class="cx">           text run at (743,11) width 4: &quot;.&quot;
</span><del>-      RenderBlock (anonymous) at (0,45) size 784x456
-        RenderText {#text} at (116,82) size 4x18
-          text run at (116,82) width 4: &quot; &quot;
-        RenderText {#text} at (236,82) size 4x18
-          text run at (236,82) width 4: &quot; &quot;
-        RenderText {#text} at (356,82) size 4x18
-          text run at (356,82) width 4: &quot; &quot;
-        RenderText {#text} at (476,82) size 4x18
-          text run at (476,82) width 4: &quot; &quot;
-        RenderText {#text} at (596,82) size 4x18
-          text run at (596,82) width 4: &quot; &quot;
-        RenderText {#text} at (716,82) size 4x18
-          text run at (716,82) width 4: &quot; &quot;
-        RenderText {#text} at (116,202) size 4x18
-          text run at (116,202) width 4: &quot; &quot;
-        RenderText {#text} at (216,202) size 4x18
-          text run at (216,202) width 4: &quot; &quot;
-        RenderText {#text} at (316,202) size 4x18
-          text run at (316,202) width 4: &quot; &quot;
-        RenderText {#text} at (416,202) size 4x18
-          text run at (416,202) width 4: &quot; &quot;
-        RenderText {#text} at (516,202) size 4x18
-          text run at (516,202) width 4: &quot; &quot;
-        RenderText {#text} at (616,202) size 4x18
-          text run at (616,202) width 4: &quot; &quot;
-        RenderText {#text} at (716,202) size 4x18
-          text run at (716,202) width 4: &quot; &quot;
-        RenderText {#text} at (96,322) size 4x18
-          text run at (96,322) width 4: &quot; &quot;
-        RenderText {#text} at (196,322) size 4x18
-          text run at (196,322) width 4: &quot; &quot;
-        RenderText {#text} at (296,322) size 4x18
-          text run at (296,322) width 4: &quot; &quot;
-        RenderText {#text} at (396,322) size 4x18
-          text run at (396,322) width 4: &quot; &quot;
-        RenderText {#text} at (496,322) size 4x18
-          text run at (496,322) width 4: &quot; &quot;
-        RenderText {#text} at (596,322) size 4x18
-          text run at (596,322) width 4: &quot; &quot;
-        RenderText {#text} at (696,322) size 4x18
-          text run at (696,322) width 4: &quot; &quot;
</del><ins>+      RenderBlock (anonymous) at (0,45) size 784x473
+        RenderText {#text} at (116,99) size 4x18
+          text run at (116,99) width 4: &quot; &quot;
+        RenderText {#text} at (236,99) size 4x18
+          text run at (236,99) width 4: &quot; &quot;
+        RenderText {#text} at (356,99) size 4x18
+          text run at (356,99) width 4: &quot; &quot;
+        RenderText {#text} at (476,99) size 4x18
+          text run at (476,99) width 4: &quot; &quot;
+        RenderText {#text} at (596,99) size 4x18
+          text run at (596,99) width 4: &quot; &quot;
+        RenderText {#text} at (716,99) size 4x18
+          text run at (716,99) width 4: &quot; &quot;
+        RenderText {#text} at (116,219) size 4x18
+          text run at (116,219) width 4: &quot; &quot;
+        RenderText {#text} at (216,219) size 4x18
+          text run at (216,219) width 4: &quot; &quot;
+        RenderText {#text} at (316,219) size 4x18
+          text run at (316,219) width 4: &quot; &quot;
+        RenderText {#text} at (416,219) size 4x18
+          text run at (416,219) width 4: &quot; &quot;
+        RenderText {#text} at (516,219) size 4x18
+          text run at (516,219) width 4: &quot; &quot;
+        RenderText {#text} at (616,219) size 4x18
+          text run at (616,219) width 4: &quot; &quot;
+        RenderText {#text} at (716,219) size 4x18
+          text run at (716,219) width 4: &quot; &quot;
+        RenderText {#text} at (96,339) size 4x18
+          text run at (96,339) width 4: &quot; &quot;
+        RenderText {#text} at (196,339) size 4x18
+          text run at (196,339) width 4: &quot; &quot;
+        RenderText {#text} at (296,339) size 4x18
+          text run at (296,339) width 4: &quot; &quot;
+        RenderText {#text} at (396,339) size 4x18
+          text run at (396,339) width 4: &quot; &quot;
+        RenderText {#text} at (496,339) size 4x18
+          text run at (496,339) width 4: &quot; &quot;
+        RenderText {#text} at (596,339) size 4x18
+          text run at (596,339) width 4: &quot; &quot;
+        RenderText {#text} at (696,339) size 4x18
+          text run at (696,339) width 4: &quot; &quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><span class="cx"> layer at (8,63) size 116x76
</span><span class="cx">   RenderBlock {DIV} at (0,10) size 116x76 [color=#ADD8E6] [border: (3px solid #000000)]
</span><span class="lines">@@ -115,11 +115,11 @@
</span><span class="cx">       RenderText {#text} at (0,25) size 25x50
</span><span class="cx">         text run at (0,25) width 25: &quot;y&quot;
</span><span class="cx">         text run at (0,50) width 25: &quot;z&quot;
</span><del>-layer at (488,63) size 116x76
-  RenderBlock {DIV} at (480,10) size 116x76 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (488,81) size 116x76
+  RenderBlock {DIV} at (480,28) size 116x76 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 100x10 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (8,18) size 100x50
</span><del>-layer at (496,71) size 48x79
</del><ins>+layer at (496,89) size 48x79
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 48x79
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 48x25
</span><span class="lines">@@ -130,11 +130,11 @@
</span><span class="cx">         RenderFlexibleBox {DIV} at (0,0) size 25x25
</span><span class="cx">           RenderBlock {DIV} at (0,12) size 25x0
</span><span class="cx">             RenderBlock {DIV} at (0,0) size 25x0
</span><del>-layer at (608,63) size 116x76
-  RenderBlock {DIV} at (600,10) size 116x76 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (608,83) size 116x76
+  RenderBlock {DIV} at (600,30) size 116x76 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 100x10 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (8,18) size 100x50
</span><del>-layer at (616,71) size 48x75
</del><ins>+layer at (616,91) size 48x75
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 48x75
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 48x25
</span><span class="lines">@@ -142,19 +142,19 @@
</span><span class="cx">     RenderBlock {DIV} at (0,25) size 48x50
</span><span class="cx">       RenderBR {BR} at (0,0) size 0x25
</span><span class="cx">       RenderImage {IMG} at (0,25) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (8,183) size 116x76
-  RenderBlock {DIV} at (0,130) size 116x76 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (8,200) size 116x76
+  RenderBlock {DIV} at (0,147) size 116x76 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 100x10 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (8,18) size 100x50
</span><del>-layer at (16,191) size 48x65
</del><ins>+layer at (16,208) size 48x65
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 48x65
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock {DIV} at (0,40) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (138,153) size 76x116
-  RenderBlock {DIV} at (130,100) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (138,170) size 76x116
+  RenderBlock {DIV} at (130,117) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 10x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (18,8) size 50x100
</span><del>-layer at (146,161) size 100x48
</del><ins>+layer at (146,178) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 100x48
</span><span class="lines">@@ -163,11 +163,11 @@
</span><span class="cx">         text run at (25,0) width 25: &quot;x&quot;
</span><span class="cx">         text run at (50,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (75,0) width 25: &quot;z&quot;
</span><del>-layer at (238,153) size 76x116
-  RenderBlock {DIV} at (230,100) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (238,170) size 76x116
+  RenderBlock {DIV} at (230,117) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 10x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (18,8) size 50x100
</span><del>-layer at (246,161) size 100x48
</del><ins>+layer at (246,178) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 100x48
</span><span class="lines">@@ -178,11 +178,11 @@
</span><span class="cx">           text run at (50,0) width 25: &quot;y&quot;
</span><span class="cx">           text run at (75,0) width 25: &quot;z&quot;
</span><span class="cx">       RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (338,153) size 76x116
-  RenderBlock {DIV} at (330,100) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (338,170) size 76x116
+  RenderBlock {DIV} at (330,117) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 10x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (18,8) size 50x100
</span><del>-layer at (346,161) size 100x48
</del><ins>+layer at (346,178) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="lines">@@ -192,11 +192,11 @@
</span><span class="cx">         text run at (0,0) width 25: &quot;x&quot;
</span><span class="cx">         text run at (25,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (50,0) width 25: &quot;z&quot;
</span><del>-layer at (438,153) size 76x116
-  RenderBlock {DIV} at (430,100) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (438,170) size 76x116
+  RenderBlock {DIV} at (430,117) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 10x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (18,8) size 50x100
</span><del>-layer at (446,161) size 100x48
</del><ins>+layer at (446,178) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="lines">@@ -206,11 +206,11 @@
</span><span class="cx">       RenderText {#text} at (25,0) size 50x25
</span><span class="cx">         text run at (25,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (50,0) width 25: &quot;z&quot;
</span><del>-layer at (538,153) size 76x116
-  RenderBlock {DIV} at (530,100) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (538,170) size 76x116
+  RenderBlock {DIV} at (530,117) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 10x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (18,8) size 50x100
</span><del>-layer at (546,161) size 79x48
</del><ins>+layer at (546,178) size 79x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 79x48
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="lines">@@ -221,11 +221,11 @@
</span><span class="cx">         RenderFlexibleBox {DIV} at (0,0) size 25x25
</span><span class="cx">           RenderBlock {DIV} at (0,12) size 25x0
</span><span class="cx">             RenderBlock {DIV} at (0,0) size 25x0
</span><del>-layer at (638,153) size 76x116
-  RenderBlock {DIV} at (630,100) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (638,170) size 76x116
+  RenderBlock {DIV} at (630,117) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 10x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (18,8) size 50x100
</span><del>-layer at (646,161) size 75x48
</del><ins>+layer at (646,178) size 75x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 75x48
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="lines">@@ -233,19 +233,19 @@
</span><span class="cx">     RenderBlock {DIV} at (25,0) size 50x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">       RenderImage {IMG} at (25,0) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (18,273) size 76x116
-  RenderBlock {DIV} at (10,220) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (18,290) size 76x116
+  RenderBlock {DIV} at (10,237) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 10x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (18,8) size 50x100
</span><del>-layer at (26,281) size 65x48
</del><ins>+layer at (26,298) size 65x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 65x48
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock {DIV} at (40,0) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (118,273) size 76x116
-  RenderBlock {DIV} at (110,220) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (118,290) size 76x116
+  RenderBlock {DIV} at (110,237) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 10x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (18,8) size 50x100
</span><del>-layer at (86,281) size 100x48
</del><ins>+layer at (86,298) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 100x48
</span><span class="lines">@@ -254,11 +254,11 @@
</span><span class="cx">         text run at (25,0) width 25: &quot;x&quot;
</span><span class="cx">         text run at (50,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (75,0) width 25: &quot;z&quot;
</span><del>-layer at (218,273) size 76x116
-  RenderBlock {DIV} at (210,220) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (218,290) size 76x116
+  RenderBlock {DIV} at (210,237) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 10x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (18,8) size 50x100
</span><del>-layer at (186,281) size 100x48
</del><ins>+layer at (186,298) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 100x48
</span><span class="lines">@@ -269,11 +269,11 @@
</span><span class="cx">           text run at (50,0) width 25: &quot;y&quot;
</span><span class="cx">           text run at (75,0) width 25: &quot;z&quot;
</span><span class="cx">       RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (318,273) size 76x116
-  RenderBlock {DIV} at (310,220) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (318,290) size 76x116
+  RenderBlock {DIV} at (310,237) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 10x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (18,8) size 50x100
</span><del>-layer at (286,281) size 100x48
</del><ins>+layer at (286,298) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="lines">@@ -283,11 +283,11 @@
</span><span class="cx">         text run at (0,0) width 25: &quot;x&quot;
</span><span class="cx">         text run at (25,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (50,0) width 25: &quot;z&quot;
</span><del>-layer at (418,273) size 76x116
-  RenderBlock {DIV} at (410,220) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (418,290) size 76x116
+  RenderBlock {DIV} at (410,237) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 10x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (18,8) size 50x100
</span><del>-layer at (386,281) size 100x48
</del><ins>+layer at (386,298) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="lines">@@ -297,11 +297,11 @@
</span><span class="cx">       RenderText {#text} at (25,0) size 50x25
</span><span class="cx">         text run at (25,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (50,0) width 25: &quot;z&quot;
</span><del>-layer at (518,273) size 76x116
-  RenderBlock {DIV} at (510,220) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (518,290) size 76x116
+  RenderBlock {DIV} at (510,237) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 10x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (18,8) size 50x100
</span><del>-layer at (507,281) size 79x48
</del><ins>+layer at (507,298) size 79x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 79x48
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="lines">@@ -312,11 +312,11 @@
</span><span class="cx">         RenderFlexibleBox {DIV} at (0,0) size 25x25
</span><span class="cx">           RenderBlock {DIV} at (0,12) size 25x0
</span><span class="cx">             RenderBlock {DIV} at (0,0) size 25x0
</span><del>-layer at (618,273) size 76x116
-  RenderBlock {DIV} at (610,220) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (618,290) size 76x116
+  RenderBlock {DIV} at (610,237) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 10x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (18,8) size 50x100
</span><del>-layer at (611,281) size 75x48
</del><ins>+layer at (611,298) size 75x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 75x48
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="lines">@@ -324,11 +324,11 @@
</span><span class="cx">     RenderBlock {DIV} at (25,0) size 50x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">       RenderImage {IMG} at (25,0) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (18,393) size 76x116
-  RenderBlock {DIV} at (10,340) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (18,410) size 76x116
+  RenderBlock {DIV} at (10,357) size 76x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderBlock {DIV} at (8,8) size 10x100 [bgcolor=#C0C0C0]
</span><span class="cx">     RenderMultiColumnSet at (18,8) size 50x100
</span><del>-layer at (21,401) size 65x48
</del><ins>+layer at (21,418) size 65x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 65x48
</span><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock {DIV} at (40,0) size 25x25 [bgcolor=#ADD8E6]
</span><span class="lines">@@ -354,65 +354,65 @@
</span><span class="cx">   RenderBlock (positioned) {DIV} at (428,81) size 26x25 [border: (3px solid #0000FF7F)]
</span><span class="cx"> layer at (428,106) size 26x25
</span><span class="cx">   RenderBlock (positioned) {DIV} at (428,106) size 26x25 [border: (3px solid #0000FF7F)]
</span><del>-layer at (550,83) size 26x25
-  RenderBlock (positioned) {DIV} at (550,83) size 26x25 [border: (3px solid #0000FF7F)]
-layer at (668,81) size 26x25
-  RenderBlock (positioned) {DIV} at (668,81) size 26x25 [border: (3px solid #0000FF7F)]
-layer at (68,191) size 26x25
-  RenderBlock (positioned) {DIV} at (68,191) size 26x25 [border: (3px solid #0000FF7F)]
-layer at (181,161) size 25x25
-  RenderBlock (positioned) {DIV} at (181,161) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (156,213) size 25x26
-  RenderBlock (positioned) {DIV} at (156,213) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (181,213) size 25x26
-  RenderBlock (positioned) {DIV} at (181,213) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (281,161) size 25x25
-  RenderBlock (positioned) {DIV} at (281,161) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (256,213) size 25x26
-  RenderBlock (positioned) {DIV} at (256,213) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (281,213) size 25x26
-  RenderBlock (positioned) {DIV} at (281,213) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (381,161) size 25x25
-  RenderBlock (positioned) {DIV} at (381,161) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (356,213) size 25x26
-  RenderBlock (positioned) {DIV} at (356,213) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (381,213) size 25x26
-  RenderBlock (positioned) {DIV} at (381,213) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (456,213) size 25x26
-  RenderBlock (positioned) {DIV} at (456,213) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (481,213) size 25x26
-  RenderBlock (positioned) {DIV} at (481,213) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (558,215) size 25x26
-  RenderBlock (positioned) {DIV} at (558,215) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (656,213) size 25x26
-  RenderBlock (positioned) {DIV} at (656,213) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (26,333) size 25x26
-  RenderBlock (positioned) {DIV} at (26,333) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (126,281) size 25x25
-  RenderBlock (positioned) {DIV} at (126,281) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (151,333) size 25x26
-  RenderBlock (positioned) {DIV} at (151,333) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (126,333) size 25x26
-  RenderBlock (positioned) {DIV} at (126,333) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (226,281) size 25x25
-  RenderBlock (positioned) {DIV} at (226,281) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (251,333) size 25x26
-  RenderBlock (positioned) {DIV} at (251,333) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (226,333) size 25x26
-  RenderBlock (positioned) {DIV} at (226,333) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (326,281) size 25x25
-  RenderBlock (positioned) {DIV} at (326,281) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (351,333) size 25x26
-  RenderBlock (positioned) {DIV} at (351,333) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (326,333) size 25x26
-  RenderBlock (positioned) {DIV} at (326,333) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (451,333) size 25x26
-  RenderBlock (positioned) {DIV} at (451,333) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (426,333) size 25x26
-  RenderBlock (positioned) {DIV} at (426,333) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (549,335) size 25x26
-  RenderBlock (positioned) {DIV} at (549,335) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (651,333) size 25x26
-  RenderBlock (positioned) {DIV} at (651,333) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (61,453) size 25x26
-  RenderBlock (positioned) {DIV} at (61,453) size 25x26 [border: (3px solid #0000FF7F)]
</del><ins>+layer at (550,101) size 26x25
+  RenderBlock (positioned) {DIV} at (550,101) size 26x25 [border: (3px solid #0000FF7F)]
+layer at (668,101) size 26x25
+  RenderBlock (positioned) {DIV} at (668,101) size 26x25 [border: (3px solid #0000FF7F)]
+layer at (68,208) size 26x25
+  RenderBlock (positioned) {DIV} at (68,208) size 26x25 [border: (3px solid #0000FF7F)]
+layer at (181,178) size 25x25
+  RenderBlock (positioned) {DIV} at (181,178) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (156,230) size 25x26
+  RenderBlock (positioned) {DIV} at (156,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (181,230) size 25x26
+  RenderBlock (positioned) {DIV} at (181,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (281,178) size 25x25
+  RenderBlock (positioned) {DIV} at (281,178) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (256,230) size 25x26
+  RenderBlock (positioned) {DIV} at (256,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (281,230) size 25x26
+  RenderBlock (positioned) {DIV} at (281,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (381,178) size 25x25
+  RenderBlock (positioned) {DIV} at (381,178) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (356,230) size 25x26
+  RenderBlock (positioned) {DIV} at (356,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (381,230) size 25x26
+  RenderBlock (positioned) {DIV} at (381,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (456,230) size 25x26
+  RenderBlock (positioned) {DIV} at (456,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (481,230) size 25x26
+  RenderBlock (positioned) {DIV} at (481,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (558,232) size 25x26
+  RenderBlock (positioned) {DIV} at (558,232) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (656,230) size 25x26
+  RenderBlock (positioned) {DIV} at (656,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (26,350) size 25x26
+  RenderBlock (positioned) {DIV} at (26,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (126,298) size 25x25
+  RenderBlock (positioned) {DIV} at (126,298) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (151,350) size 25x26
+  RenderBlock (positioned) {DIV} at (151,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (126,350) size 25x26
+  RenderBlock (positioned) {DIV} at (126,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (226,298) size 25x25
+  RenderBlock (positioned) {DIV} at (226,298) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (251,350) size 25x26
+  RenderBlock (positioned) {DIV} at (251,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (226,350) size 25x26
+  RenderBlock (positioned) {DIV} at (226,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (326,298) size 25x25
+  RenderBlock (positioned) {DIV} at (326,298) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (351,350) size 25x26
+  RenderBlock (positioned) {DIV} at (351,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (326,350) size 25x26
+  RenderBlock (positioned) {DIV} at (326,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (451,350) size 25x26
+  RenderBlock (positioned) {DIV} at (451,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (426,350) size 25x26
+  RenderBlock (positioned) {DIV} at (426,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (549,352) size 25x26
+  RenderBlock (positioned) {DIV} at (549,352) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (651,350) size 25x26
+  RenderBlock (positioned) {DIV} at (651,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (61,470) size 25x26
+  RenderBlock (positioned) {DIV} at (61,470) size 25x26 [border: (3px solid #0000FF7F)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticollayerssplitacrosscolumnsexpectedpng"></a>
<div class="binary"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/layers-split-across-columns-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticollayerssplitacrosscolumnsexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/layers-split-across-columns-expected.txt (178334 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/layers-split-across-columns-expected.txt        2015-01-13 09:32:17 UTC (rev 178334)
+++ releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/layers-split-across-columns-expected.txt        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -1,26 +1,26 @@
</span><del>-layer at (0,0) size 785x676
</del><ins>+layer at (0,0) size 785x971
</ins><span class="cx">   RenderView at (0,0) size 785x600
</span><del>-layer at (0,0) size 785x676
-  RenderBlock {HTML} at (0,0) size 785x676
-    RenderBody {BODY} at (8,8) size 769x660
</del><ins>+layer at (0,0) size 785x971
+  RenderBlock {HTML} at (0,0) size 785x971
+    RenderBody {BODY} at (8,8) size 769x955
</ins><span class="cx">       RenderBlock {DIV} at (0,0) size 220x328
</span><span class="cx">         RenderBlock (anonymous) at (0,0) size 220x18
</span><span class="cx">           RenderText {#text} at (0,0) size 65x18
</span><span class="cx">             text run at (0,0) width 65: &quot;Overflow:&quot;
</span><del>-      RenderText {#text} at (220,314) size 4x18
-        text run at (220,314) width 4: &quot; &quot;
</del><ins>+      RenderText {#text} at (220,609) size 4x18
+        text run at (220,609) width 4: &quot; &quot;
</ins><span class="cx">       RenderBlock {DIV} at (224,0) size 220x328
</span><span class="cx">         RenderBlock (anonymous) at (0,0) size 220x18
</span><span class="cx">           RenderText {#text} at (0,0) size 76x18
</span><span class="cx">             text run at (0,0) width 76: &quot;Transforms:&quot;
</span><del>-      RenderText {#text} at (444,314) size 4x18
-        text run at (444,314) width 4: &quot; &quot;
</del><ins>+      RenderText {#text} at (444,609) size 4x18
+        text run at (444,609) width 4: &quot; &quot;
</ins><span class="cx">       RenderBlock {DIV} at (448,0) size 220x328
</span><span class="cx">         RenderBlock (anonymous) at (0,0) size 220x18
</span><span class="cx">           RenderText {#text} at (0,0) size 131x18
</span><span class="cx">             text run at (0,0) width 131: &quot;Relative Positioning:&quot;
</span><span class="cx">       RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {DIV} at (0,332) size 220x328
</del><ins>+      RenderBlock {DIV} at (0,627) size 220x328
</ins><span class="cx">         RenderBlock (anonymous) at (0,0) size 220x18
</span><span class="cx">           RenderText {#text} at (0,0) size 54x18
</span><span class="cx">             text run at (0,0) width 54: &quot;Opacity:&quot;
</span><span class="lines">@@ -63,10 +63,10 @@
</span><span class="cx">     RenderBlock (anonymous) at (0,500) size 100x100
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 100x100 [bgcolor=#000000]
</span><span class="cx">       RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (8,358) size 220x310
</del><ins>+layer at (8,653) size 220x310
</ins><span class="cx">   RenderBlock {DIV} at (0,18) size 220x310 [border: (5px solid #000000)]
</span><span class="cx">     RenderMultiColumnSet at (5,5) size 210x300
</span><del>-layer at (13,363) size 100x600 backgroundClip at (0,0) size 785x676 clip at (0,0) size 785x676 outlineClip at (0,0) size 785x676
</del><ins>+layer at (13,658) size 100x600 backgroundClip at (0,0) size 785x971 clip at (0,0) size 785x971 outlineClip at (0,0) size 785x971
</ins><span class="cx">   RenderMultiColumnFlowThread at (5,5) size 100x600
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 100x100
</span><span class="cx">       RenderBlock {DIV} at (0,0) size 100x100 [bgcolor=#000000]
</span><span class="lines">@@ -86,7 +86,7 @@
</span><span class="cx">     RenderBlock {DIV} at (0,100) size 100x100 [bgcolor=#0000D0]
</span><span class="cx">     RenderBlock {DIV} at (0,200) size 100x100 [bgcolor=#0000B0]
</span><span class="cx">     RenderBlock {DIV} at (0,300) size 100x100 [bgcolor=#000090]
</span><del>-layer at (13,463) size 100x400 backgroundClip at (0,0) size 785x676 clip at (0,0) size 785x676 outlineClip at (0,0) size 785x676
</del><ins>+layer at (13,758) size 100x400 backgroundClip at (0,0) size 785x971 clip at (0,0) size 785x971 outlineClip at (0,0) size 785x971
</ins><span class="cx">   RenderBlock {DIV} at (0,100) size 100x400
</span><span class="cx">     RenderBlock {DIV} at (0,0) size 100x100 [bgcolor=#0000F0]
</span><span class="cx">     RenderBlock {DIV} at (0,100) size 100x100 [bgcolor=#0000D0]
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolnewmulticolclientrectsexpectedpng"></a>
<div class="binary"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/newmulticol/client-rects-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacfastmulticolnewmulticolclientrectsexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/newmulticol/client-rects-expected.txt (178334 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/newmulticol/client-rects-expected.txt        2015-01-13 09:32:17 UTC (rev 178334)
+++ releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac/fast/multicol/newmulticol/client-rects-expected.txt        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -17,46 +17,46 @@
</span><span class="cx">         RenderBlock {SPAN} at (718,0) size 25x25 [border: (3px solid #0000FF7F)]
</span><span class="cx">         RenderText {#text} at (743,11) size 4x18
</span><span class="cx">           text run at (743,11) width 4: &quot;.&quot;
</span><del>-      RenderBlock (anonymous) at (0,45) size 784x330
-        RenderText {#text} at (116,72) size 4x18
-          text run at (116,72) width 4: &quot; &quot;
-        RenderText {#text} at (236,72) size 4x18
-          text run at (236,72) width 4: &quot; &quot;
-        RenderText {#text} at (356,72) size 4x18
-          text run at (356,72) width 4: &quot; &quot;
-        RenderText {#text} at (476,72) size 4x18
-          text run at (476,72) width 4: &quot; &quot;
-        RenderText {#text} at (596,72) size 4x18
-          text run at (596,72) width 4: &quot; &quot;
-        RenderText {#text} at (716,72) size 4x18
-          text run at (716,72) width 4: &quot; &quot;
-        RenderText {#text} at (116,192) size 4x18
-          text run at (116,192) width 4: &quot; &quot;
-        RenderText {#text} at (206,192) size 4x18
-          text run at (206,192) width 4: &quot; &quot;
-        RenderText {#text} at (296,192) size 4x18
-          text run at (296,192) width 4: &quot; &quot;
-        RenderText {#text} at (386,192) size 4x18
-          text run at (386,192) width 4: &quot; &quot;
-        RenderText {#text} at (476,192) size 4x18
-          text run at (476,192) width 4: &quot; &quot;
-        RenderText {#text} at (566,192) size 4x18
-          text run at (566,192) width 4: &quot; &quot;
-        RenderText {#text} at (656,192) size 4x18
-          text run at (656,192) width 4: &quot; &quot;
</del><ins>+      RenderBlock (anonymous) at (0,45) size 784x357
+        RenderText {#text} at (116,99) size 4x18
+          text run at (116,99) width 4: &quot; &quot;
+        RenderText {#text} at (236,99) size 4x18
+          text run at (236,99) width 4: &quot; &quot;
+        RenderText {#text} at (356,99) size 4x18
+          text run at (356,99) width 4: &quot; &quot;
+        RenderText {#text} at (476,99) size 4x18
+          text run at (476,99) width 4: &quot; &quot;
+        RenderText {#text} at (596,99) size 4x18
+          text run at (596,99) width 4: &quot; &quot;
+        RenderText {#text} at (716,99) size 4x18
+          text run at (716,99) width 4: &quot; &quot;
+        RenderText {#text} at (116,219) size 4x18
+          text run at (116,219) width 4: &quot; &quot;
+        RenderText {#text} at (206,219) size 4x18
+          text run at (206,219) width 4: &quot; &quot;
+        RenderText {#text} at (296,219) size 4x18
+          text run at (296,219) width 4: &quot; &quot;
+        RenderText {#text} at (386,219) size 4x18
+          text run at (386,219) width 4: &quot; &quot;
+        RenderText {#text} at (476,219) size 4x18
+          text run at (476,219) width 4: &quot; &quot;
+        RenderText {#text} at (566,219) size 4x18
+          text run at (566,219) width 4: &quot; &quot;
+        RenderText {#text} at (656,219) size 4x18
+          text run at (656,219) width 4: &quot; &quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-        RenderText {#text} at (86,312) size 4x18
-          text run at (86,312) width 4: &quot; &quot;
-        RenderText {#text} at (176,312) size 4x18
-          text run at (176,312) width 4: &quot; &quot;
-        RenderText {#text} at (266,312) size 4x18
-          text run at (266,312) width 4: &quot; &quot;
-        RenderText {#text} at (356,312) size 4x18
-          text run at (356,312) width 4: &quot; &quot;
-        RenderText {#text} at (446,312) size 4x18
-          text run at (446,312) width 4: &quot; &quot;
-        RenderText {#text} at (536,312) size 4x18
-          text run at (536,312) width 4: &quot; &quot;
</del><ins>+        RenderText {#text} at (86,339) size 4x18
+          text run at (86,339) width 4: &quot; &quot;
+        RenderText {#text} at (176,339) size 4x18
+          text run at (176,339) width 4: &quot; &quot;
+        RenderText {#text} at (266,339) size 4x18
+          text run at (266,339) width 4: &quot; &quot;
+        RenderText {#text} at (356,339) size 4x18
+          text run at (356,339) width 4: &quot; &quot;
+        RenderText {#text} at (446,339) size 4x18
+          text run at (446,339) width 4: &quot; &quot;
+        RenderText {#text} at (536,339) size 4x18
+          text run at (536,339) width 4: &quot; &quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><span class="cx"> layer at (8,63) size 116x66
</span><span class="cx">   RenderBlock {DIV} at (0,10) size 116x66 [color=#ADD8E6] [border: (3px solid #000000)]
</span><span class="lines">@@ -104,10 +104,10 @@
</span><span class="cx">       RenderText {#text} at (0,25) size 25x50
</span><span class="cx">         text run at (0,25) width 25: &quot;y&quot;
</span><span class="cx">         text run at (0,50) width 25: &quot;z&quot;
</span><del>-layer at (488,63) size 116x66
-  RenderBlock {DIV} at (480,10) size 116x66 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (488,81) size 116x66
+  RenderBlock {DIV} at (480,28) size 116x66 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 100x50
</span><del>-layer at (496,71) size 48x79
</del><ins>+layer at (496,89) size 48x79
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 48x79
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 48x25
</span><span class="cx">       RenderBR {BR} at (0,0) size 0x25
</span><span class="lines">@@ -117,36 +117,36 @@
</span><span class="cx">         RenderFlexibleBox {DIV} at (0,0) size 25x25
</span><span class="cx">           RenderBlock {DIV} at (0,12) size 25x0
</span><span class="cx">             RenderBlock {DIV} at (0,0) size 25x0
</span><del>-layer at (608,63) size 116x66
-  RenderBlock {DIV} at (600,10) size 116x66 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (608,83) size 116x66
+  RenderBlock {DIV} at (600,30) size 116x66 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 100x50
</span><del>-layer at (616,71) size 48x75
</del><ins>+layer at (616,91) size 48x75
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 48x75
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 48x25
</span><span class="cx">       RenderBR {BR} at (0,0) size 0x25
</span><span class="cx">     RenderBlock {DIV} at (0,25) size 48x50
</span><span class="cx">       RenderBR {BR} at (0,0) size 0x25
</span><span class="cx">       RenderImage {IMG} at (0,25) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (8,183) size 116x66
-  RenderBlock {DIV} at (0,130) size 116x66 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (8,210) size 116x66
+  RenderBlock {DIV} at (0,157) size 116x66 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 100x50
</span><del>-layer at (16,191) size 48x65
</del><ins>+layer at (16,218) size 48x65
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 48x65
</span><span class="cx">     RenderBlock {DIV} at (0,40) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (138,143) size 66x116
-  RenderBlock {DIV} at (130,90) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (138,170) size 66x116
+  RenderBlock {DIV} at (130,117) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (146,151) size 100x48
</del><ins>+layer at (146,178) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">     RenderText {#text} at (25,0) size 75x25
</span><span class="cx">       text run at (25,0) width 25: &quot;x&quot;
</span><span class="cx">       text run at (50,0) width 25: &quot;y&quot;
</span><span class="cx">       text run at (75,0) width 25: &quot;z&quot;
</span><del>-layer at (228,143) size 66x116
-  RenderBlock {DIV} at (220,90) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (228,170) size 66x116
+  RenderBlock {DIV} at (220,117) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (236,151) size 100x48
</del><ins>+layer at (236,178) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">     RenderInline {SPAN} at (0,0) size 75x25
</span><span class="lines">@@ -155,10 +155,10 @@
</span><span class="cx">         text run at (50,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (75,0) width 25: &quot;z&quot;
</span><span class="cx">     RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (318,143) size 66x116
-  RenderBlock {DIV} at (310,90) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (318,170) size 66x116
+  RenderBlock {DIV} at (310,117) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (326,151) size 100x48
</del><ins>+layer at (326,178) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="lines">@@ -167,10 +167,10 @@
</span><span class="cx">         text run at (0,0) width 25: &quot;x&quot;
</span><span class="cx">         text run at (25,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (50,0) width 25: &quot;z&quot;
</span><del>-layer at (408,143) size 66x116
-  RenderBlock {DIV} at (400,90) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (408,170) size 66x116
+  RenderBlock {DIV} at (400,117) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (416,151) size 100x48
</del><ins>+layer at (416,178) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="lines">@@ -179,10 +179,10 @@
</span><span class="cx">       RenderText {#text} at (25,0) size 50x25
</span><span class="cx">         text run at (25,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (50,0) width 25: &quot;z&quot;
</span><del>-layer at (498,143) size 66x116
-  RenderBlock {DIV} at (490,90) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (498,170) size 66x116
+  RenderBlock {DIV} at (490,117) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (506,151) size 79x48
</del><ins>+layer at (506,178) size 79x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 79x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="lines">@@ -192,36 +192,36 @@
</span><span class="cx">         RenderFlexibleBox {DIV} at (0,0) size 25x25
</span><span class="cx">           RenderBlock {DIV} at (0,12) size 25x0
</span><span class="cx">             RenderBlock {DIV} at (0,0) size 25x0
</span><del>-layer at (588,143) size 66x116
-  RenderBlock {DIV} at (580,90) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (588,170) size 66x116
+  RenderBlock {DIV} at (580,117) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (596,151) size 75x48
</del><ins>+layer at (596,178) size 75x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 75x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">     RenderBlock {DIV} at (25,0) size 50x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">       RenderImage {IMG} at (25,0) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (678,143) size 66x116
-  RenderBlock {DIV} at (670,90) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (678,170) size 66x116
+  RenderBlock {DIV} at (670,117) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (686,151) size 65x48
</del><ins>+layer at (686,178) size 65x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 65x48
</span><span class="cx">     RenderBlock {DIV} at (40,0) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (18,263) size 66x116
-  RenderBlock {DIV} at (10,210) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (18,290) size 66x116
+  RenderBlock {DIV} at (10,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (-24,271) size 100x48 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</del><ins>+layer at (-24,298) size 100x48 backgroundClip at (0,0) size 800x600 clip at (0,0) size 800x600 outlineClip at (0,0) size 800x600
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">     RenderText {#text} at (25,0) size 75x25
</span><span class="cx">       text run at (25,0) width 25: &quot;x&quot;
</span><span class="cx">       text run at (50,0) width 25: &quot;y&quot;
</span><span class="cx">       text run at (75,0) width 25: &quot;z&quot;
</span><del>-layer at (108,263) size 66x116
-  RenderBlock {DIV} at (100,210) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (108,290) size 66x116
+  RenderBlock {DIV} at (100,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (66,271) size 100x48
</del><ins>+layer at (66,298) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">     RenderInline {SPAN} at (0,0) size 75x25
</span><span class="lines">@@ -230,10 +230,10 @@
</span><span class="cx">         text run at (50,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (75,0) width 25: &quot;z&quot;
</span><span class="cx">     RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (198,263) size 66x116
-  RenderBlock {DIV} at (190,210) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (198,290) size 66x116
+  RenderBlock {DIV} at (190,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (156,271) size 100x48
</del><ins>+layer at (156,298) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="lines">@@ -242,10 +242,10 @@
</span><span class="cx">         text run at (0,0) width 25: &quot;x&quot;
</span><span class="cx">         text run at (25,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (50,0) width 25: &quot;z&quot;
</span><del>-layer at (288,263) size 66x116
-  RenderBlock {DIV} at (280,210) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (288,290) size 66x116
+  RenderBlock {DIV} at (280,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (246,271) size 100x48
</del><ins>+layer at (246,298) size 100x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 100x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="lines">@@ -254,10 +254,10 @@
</span><span class="cx">       RenderText {#text} at (25,0) size 50x25
</span><span class="cx">         text run at (25,0) width 25: &quot;y&quot;
</span><span class="cx">         text run at (50,0) width 25: &quot;z&quot;
</span><del>-layer at (378,263) size 66x116
-  RenderBlock {DIV} at (370,210) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (378,290) size 66x116
+  RenderBlock {DIV} at (370,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (357,271) size 79x48
</del><ins>+layer at (357,298) size 79x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 79x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="lines">@@ -267,20 +267,20 @@
</span><span class="cx">         RenderFlexibleBox {DIV} at (0,0) size 25x25
</span><span class="cx">           RenderBlock {DIV} at (0,12) size 25x0
</span><span class="cx">             RenderBlock {DIV} at (0,0) size 25x0
</span><del>-layer at (468,263) size 66x116
-  RenderBlock {DIV} at (460,210) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (468,290) size 66x116
+  RenderBlock {DIV} at (460,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (451,271) size 75x48
</del><ins>+layer at (451,298) size 75x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 75x48
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 25x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">     RenderBlock {DIV} at (25,0) size 50x48
</span><span class="cx">       RenderBR {BR} at (0,0) size 25x0
</span><span class="cx">       RenderImage {IMG} at (25,0) size 25x25 [bgcolor=#ADD8E6]
</span><del>-layer at (558,263) size 66x116
-  RenderBlock {DIV} at (550,210) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</del><ins>+layer at (558,290) size 66x116
+  RenderBlock {DIV} at (550,237) size 66x116 [color=#ADD8E6] [border: (3px solid #000000)]
</ins><span class="cx">     RenderMultiColumnSet at (8,8) size 50x100
</span><del>-layer at (551,271) size 65x48
</del><ins>+layer at (551,298) size 65x48
</ins><span class="cx">   RenderMultiColumnFlowThread at (8,8) size 65x48
</span><span class="cx">     RenderBlock {DIV} at (40,0) size 25x25 [bgcolor=#ADD8E6]
</span><span class="cx"> layer at (16,96) size 25x25
</span><span class="lines">@@ -305,65 +305,65 @@
</span><span class="cx">   RenderBlock (positioned) {DIV} at (428,71) size 26x25 [border: (3px solid #0000FF7F)]
</span><span class="cx"> layer at (428,96) size 26x25
</span><span class="cx">   RenderBlock (positioned) {DIV} at (428,96) size 26x25 [border: (3px solid #0000FF7F)]
</span><del>-layer at (550,73) size 26x25
-  RenderBlock (positioned) {DIV} at (550,73) size 26x25 [border: (3px solid #0000FF7F)]
-layer at (668,71) size 26x25
-  RenderBlock (positioned) {DIV} at (668,71) size 26x25 [border: (3px solid #0000FF7F)]
-layer at (68,181) size 26x25
-  RenderBlock (positioned) {DIV} at (68,181) size 26x25 [border: (3px solid #0000FF7F)]
-layer at (171,151) size 25x25
-  RenderBlock (positioned) {DIV} at (171,151) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (146,203) size 25x26
-  RenderBlock (positioned) {DIV} at (146,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (171,203) size 25x26
-  RenderBlock (positioned) {DIV} at (171,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (261,151) size 25x25
-  RenderBlock (positioned) {DIV} at (261,151) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (236,203) size 25x26
-  RenderBlock (positioned) {DIV} at (236,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (261,203) size 25x26
-  RenderBlock (positioned) {DIV} at (261,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (351,151) size 25x25
-  RenderBlock (positioned) {DIV} at (351,151) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (326,203) size 25x26
-  RenderBlock (positioned) {DIV} at (326,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (351,203) size 25x26
-  RenderBlock (positioned) {DIV} at (351,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (416,203) size 25x26
-  RenderBlock (positioned) {DIV} at (416,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (441,203) size 25x26
-  RenderBlock (positioned) {DIV} at (441,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (508,205) size 25x26
-  RenderBlock (positioned) {DIV} at (508,205) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (596,203) size 25x26
-  RenderBlock (positioned) {DIV} at (596,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (676,203) size 25x26
-  RenderBlock (positioned) {DIV} at (676,203) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (26,271) size 25x25
-  RenderBlock (positioned) {DIV} at (26,271) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (51,323) size 25x26
-  RenderBlock (positioned) {DIV} at (51,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (26,323) size 25x26
-  RenderBlock (positioned) {DIV} at (26,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (116,271) size 25x25
-  RenderBlock (positioned) {DIV} at (116,271) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (141,323) size 25x26
-  RenderBlock (positioned) {DIV} at (141,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (116,323) size 25x26
-  RenderBlock (positioned) {DIV} at (116,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (206,271) size 25x25
-  RenderBlock (positioned) {DIV} at (206,271) size 25x25 [border: (3px solid #0000FF7F)]
-layer at (231,323) size 25x26
-  RenderBlock (positioned) {DIV} at (231,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (206,323) size 25x26
-  RenderBlock (positioned) {DIV} at (206,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (321,323) size 25x26
-  RenderBlock (positioned) {DIV} at (321,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (296,323) size 25x26
-  RenderBlock (positioned) {DIV} at (296,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (409,325) size 25x26
-  RenderBlock (positioned) {DIV} at (409,325) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (501,323) size 25x26
-  RenderBlock (positioned) {DIV} at (501,323) size 25x26 [border: (3px solid #0000FF7F)]
-layer at (601,323) size 25x26
-  RenderBlock (positioned) {DIV} at (601,323) size 25x26 [border: (3px solid #0000FF7F)]
</del><ins>+layer at (550,91) size 26x25
+  RenderBlock (positioned) {DIV} at (550,91) size 26x25 [border: (3px solid #0000FF7F)]
+layer at (668,91) size 26x25
+  RenderBlock (positioned) {DIV} at (668,91) size 26x25 [border: (3px solid #0000FF7F)]
+layer at (68,208) size 26x25
+  RenderBlock (positioned) {DIV} at (68,208) size 26x25 [border: (3px solid #0000FF7F)]
+layer at (171,178) size 25x25
+  RenderBlock (positioned) {DIV} at (171,178) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (146,230) size 25x26
+  RenderBlock (positioned) {DIV} at (146,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (171,230) size 25x26
+  RenderBlock (positioned) {DIV} at (171,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (261,178) size 25x25
+  RenderBlock (positioned) {DIV} at (261,178) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (236,230) size 25x26
+  RenderBlock (positioned) {DIV} at (236,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (261,230) size 25x26
+  RenderBlock (positioned) {DIV} at (261,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (351,178) size 25x25
+  RenderBlock (positioned) {DIV} at (351,178) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (326,230) size 25x26
+  RenderBlock (positioned) {DIV} at (326,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (351,230) size 25x26
+  RenderBlock (positioned) {DIV} at (351,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (416,230) size 25x26
+  RenderBlock (positioned) {DIV} at (416,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (441,230) size 25x26
+  RenderBlock (positioned) {DIV} at (441,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (508,232) size 25x26
+  RenderBlock (positioned) {DIV} at (508,232) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (596,230) size 25x26
+  RenderBlock (positioned) {DIV} at (596,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (676,230) size 25x26
+  RenderBlock (positioned) {DIV} at (676,230) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (26,298) size 25x25
+  RenderBlock (positioned) {DIV} at (26,298) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (51,350) size 25x26
+  RenderBlock (positioned) {DIV} at (51,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (26,350) size 25x26
+  RenderBlock (positioned) {DIV} at (26,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (116,298) size 25x25
+  RenderBlock (positioned) {DIV} at (116,298) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (141,350) size 25x26
+  RenderBlock (positioned) {DIV} at (141,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (116,350) size 25x26
+  RenderBlock (positioned) {DIV} at (116,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (206,298) size 25x25
+  RenderBlock (positioned) {DIV} at (206,298) size 25x25 [border: (3px solid #0000FF7F)]
+layer at (231,350) size 25x26
+  RenderBlock (positioned) {DIV} at (231,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (206,350) size 25x26
+  RenderBlock (positioned) {DIV} at (206,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (321,350) size 25x26
+  RenderBlock (positioned) {DIV} at (321,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (296,350) size 25x26
+  RenderBlock (positioned) {DIV} at (296,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (409,352) size 25x26
+  RenderBlock (positioned) {DIV} at (409,352) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (501,350) size 25x26
+  RenderBlock (positioned) {DIV} at (501,350) size 25x26 [border: (3px solid #0000FF7F)]
+layer at (601,350) size 25x26
+  RenderBlock (positioned) {DIV} at (601,350) size 25x26 [border: (3px solid #0000FF7F)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacmountainlionfastformssearchverticalalignmentexpectedpng"></a>
<div class="binary"><h4>Added: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac-mountainlion/fast/forms/search-vertical-alignment-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<span class="cx">Property changes on: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac-mountainlion/fast/forms/search-vertical-alignment-expected.png
</span><span class="cx">___________________________________________________________________
</span><a id="svnmimetype"></a>
<div class="addfile"><h4>Added: svn:mime-type</h4></div>
<a id="releasesWebKitGTKwebkit26LayoutTestsplatformmacmountainlionfastformssearchverticalalignmentexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac-mountainlion/fast/forms/search-vertical-alignment-expected.txt (178334 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac-mountainlion/fast/forms/search-vertical-alignment-expected.txt        2015-01-13 09:32:17 UTC (rev 178334)
+++ releases/WebKitGTK/webkit-2.6/LayoutTests/platform/mac-mountainlion/fast/forms/search-vertical-alignment-expected.txt        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -31,14 +31,14 @@
</span><span class="cx">         RenderTextControl {INPUT} at (163,2) size 123x16 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
</span><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><span class="cx">       RenderBlock {P} at (0,147) size 784x18
</span><del>-        RenderTextControl {INPUT} at (2,2) size 153x12 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
</del><ins>+        RenderTextControl {INPUT} at (2,0) size 153x12 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
</ins><span class="cx">           RenderFlexibleBox {DIV} at (3,0) size 147x12
</span><span class="cx">             RenderBlock {DIV} at (0,0) size 17x12
</span><span class="cx">             RenderBlock {DIV} at (17,3) size 117x6
</span><span class="cx">             RenderBlock {DIV} at (134,0) size 13x12
</span><span class="cx">         RenderText {#text} at (157,0) size 4x18
</span><span class="cx">           text run at (157,0) width 4: &quot; &quot;
</span><del>-        RenderTextControl {INPUT} at (163,2) size 123x12 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
</del><ins>+        RenderTextControl {INPUT} at (163,0) size 123x12 [bgcolor=#FFFFFF] [border: (2px inset #000000)]
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><span class="cx"> layer at (30,76) size 117x13
</span><span class="cx">   RenderBlock {DIV} at (0,0) size 117x13
</span><span class="lines">@@ -56,11 +56,11 @@
</span><span class="cx">   RenderBlock {DIV} at (3,1) size 117x13
</span><span class="cx">     RenderText {#text} at (0,0) size 24x13
</span><span class="cx">       text run at (0,0) width 24: &quot;Text&quot;
</span><del>-layer at (30,160) size 117x6 scrollHeight 13
</del><ins>+layer at (30,158) size 117x6 scrollHeight 13
</ins><span class="cx">   RenderBlock {DIV} at (0,0) size 117x6
</span><span class="cx">     RenderText {#text} at (0,0) size 24x13
</span><span class="cx">       text run at (0,0) width 24: &quot;Text&quot;
</span><del>-layer at (174,160) size 117x6 scrollHeight 13
</del><ins>+layer at (174,158) size 117x6 scrollHeight 13
</ins><span class="cx">   RenderBlock {DIV} at (3,3) size 117x6
</span><span class="cx">     RenderText {#text} at (0,0) size 24x13
</span><span class="cx">       text run at (0,0) width 24: &quot;Text&quot;
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26SourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/Source/WebCore/ChangeLog (178334 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/Source/WebCore/ChangeLog        2015-01-13 09:32:17 UTC (rev 178334)
+++ releases/WebKitGTK/webkit-2.6/Source/WebCore/ChangeLog        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -1,3 +1,45 @@
</span><ins>+2014-12-08  Myles C. Maxfield  &lt;mmaxfield@apple.com&gt;
+
+        Inline elements whose parents have small line-height are laid out too low
+        https://bugs.webkit.org/show_bug.cgi?id=139375
+
+        Reviewed by Dave Hyatt.
+
+        This is a port of the Blink patch at
+        https://src.chromium.org/viewvc/blink?revision=155253&amp;view=revision.
+
+        When laying out inline elements, we try to align leaf children's parents'
+        baselines across the entire line. However, if you set line-height: 0px on a
+        span, the entire InlineBox which represents that span will have a height of
+        0, and therefore be laid out entirely on the baseline. In addition, we will
+        try to vertically center the leaf text in the span's InlineBox, which means
+        the leaf text will be vertically centered on the baseline. All the other
+        major browsers do not have this behavior; instead, they line up the boxes
+        as you would expect.
+
+        This bug led to a rendering problem on the front page of the New York Times.
+
+        Here is the ChangeLog from the Blink patch:
+
+        Fix baseline position when it is outside the element's box
+
+        Specifically, we shouldn't force the baseline to be inside the element. IE
+        and FF don't do this, and it's incompatible with the CSS spec:
+        
+        &quot;The baseline of an 'inline-block' is the baseline of its last line box in
+        the normal flow, unless it has either no in-flow line boxes or if its
+        'overflow' property has a computed value other than 'visible', in which case
+        the baseline is the bottom margin edge.&quot;
+        -- http://www.w3.org/TR/CSS21/visudet.html#leading
+        
+        It doesn't have a special case for &quot;baseline is outside of the element's
+        margin box&quot;.
+        
+        Test: fast/text/small-line-height.html
+
+        * rendering/RenderBlock.cpp:
+        (WebCore::RenderBlock::baselinePosition):
+
</ins><span class="cx"> 2014-12-08  Doron Wloschowsky  &lt;doron_wloschowsky@scee.net&gt;
</span><span class="cx"> 
</span><span class="cx">         Webkit using Harfbuzz does not display Arabic script correctly
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26SourceWebCorerenderingRenderBlockcpp"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/Source/WebCore/rendering/RenderBlock.cpp (178334 => 178335)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/Source/WebCore/rendering/RenderBlock.cpp        2015-01-13 09:32:17 UTC (rev 178334)
+++ releases/WebKitGTK/webkit-2.6/Source/WebCore/rendering/RenderBlock.cpp        2015-01-13 09:43:04 UTC (rev 178335)
</span><span class="lines">@@ -2961,17 +2961,25 @@
</span><span class="cx">         // the normal flow.  We make an exception for marquees, since their baselines are meaningless
</span><span class="cx">         // (the content inside them moves).  This matches WinIE as well, which just bottom-aligns them.
</span><span class="cx">         // We also give up on finding a baseline if we have a vertical scrollbar, or if we are scrolled
</span><del>-        // vertically (e.g., an overflow:hidden block that has had scrollTop moved) or if the baseline is outside
-        // of our content box.
</del><ins>+        // vertically (e.g., an overflow:hidden block that has had scrollTop moved).
</ins><span class="cx">         bool ignoreBaseline = (layer() &amp;&amp; (layer()-&gt;marquee() || (direction == HorizontalLine ? (layer()-&gt;verticalScrollbar() || layer()-&gt;scrollYOffset() != 0)
</span><span class="cx">             : (layer()-&gt;horizontalScrollbar() || layer()-&gt;scrollXOffset() != 0)))) || (isWritingModeRoot() &amp;&amp; !isRubyRun());
</span><span class="cx">         
</span><span class="cx">         int baselinePos = ignoreBaseline ? -1 : inlineBlockBaseline(direction);
</span><span class="cx">         
</span><del>-        LayoutUnit bottomOfContent = direction == HorizontalLine ? borderTop() + paddingTop() + contentHeight() : borderRight() + paddingRight() + contentWidth();
-        if (baselinePos != -1 &amp;&amp; baselinePos &lt;= bottomOfContent)
</del><ins>+        if (isDeprecatedFlexibleBox()) {
+            // Historically, we did this check for all baselines. But we can't
+            // remove this code from deprecated flexbox, because it effectively
+            // breaks -webkit-line-clamp, which is used in the wild -- we would
+            // calculate the baseline as if -webkit-line-clamp wasn't used.
+            // For simplicity, we use this for all uses of deprecated flexbox.
+            LayoutUnit bottomOfContent = direction == HorizontalLine ? borderTop() + paddingTop() + contentHeight() : borderRight() + paddingRight() + contentWidth();
+            if (baselinePos &gt; bottomOfContent)
+                baselinePos = -1;
+        }
+        if (baselinePos != -1)
</ins><span class="cx">             return direction == HorizontalLine ? marginTop() + baselinePos : marginRight() + baselinePos;
</span><del>-            
</del><ins>+
</ins><span class="cx">         return RenderBox::baselinePosition(baselineType, firstLine, direction, linePositionMode);
</span><span class="cx">     }
</span><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>