<!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>[199483] releases/WebKitGTK/webkit-2.12</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/199483">199483</a></dd>
<dt>Author</dt> <dd>carlosgc@webkit.org</dd>
<dt>Date</dt> <dd>2016-04-13 07:56:43 -0700 (Wed, 13 Apr 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>Merge <a href="http://trac.webkit.org/projects/webkit/changeset/199034">r199034</a> - CSS Triangles Rendering Regression affecting CSS Ribbons.
https://bugs.webkit.org/show_bug.cgi?id=156121

Reviewed by Simon Fraser.

Source/WebCore:

We use floored border width values for painting (see BorderEdge).
However border-box sizing is based on rounded border values. This mismatch could result in a 2 device pixel
gap when both top and bottom (or left and right) borders are present.

This patch applies flooring on the computed border width value.

It matches FireFox (44.0.2) behaviour (both by inspecting box-sizing visually and through getComputedStyle() values on border-width).

Covered by existing tests.

* css/StyleBuilderConverter.h:
(WebCore::StyleBuilderConverter::convertLineWidth):

LayoutTests:

Rebeaseline to match current behaviour.

* fast/inline/hidpi-inline-text-decoration-with-subpixel-value-expected.html:
* platform/mac/css1/units/length_units-expected.txt:
* platform/mac/fast/css/bidi-override-in-anonymous-block-expected.txt:
* platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt:
* platform/mac/fast/repaint/repaint-during-scroll-with-zoom-expected.txt:
* platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.txt:
* platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-001-expected.txt:
* platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-002-expected.txt:
* platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.txt:
* platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.txt:
* platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.txt:
* platform/mac/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.txt:
* platform/mac/media/video-zoom-expected.txt:
* platform/mac/svg/custom/svg-fonts-in-html-expected.txt:
* platform/mac/svg/zoom/page/zoom-background-image-tiled-expected.txt:
* platform/mac/svg/zoom/page/zoom-background-images-expected.txt:
* platform/mac/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.txt:
* platform/mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt:
* platform/mac/svg/zoom/page/zoom-svg-float-border-padding-expected.txt:
* platform/mac/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt:
* platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsChangeLog">releases/WebKitGTK/webkit-2.12/LayoutTests/ChangeLog</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsfastinlinehidpiinlinetextdecorationwithsubpixelvalueexpectedhtml">releases/WebKitGTK/webkit-2.12/LayoutTests/fast/inline/hidpi-inline-text-decoration-with-subpixel-value-expected.html</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorcss1unitslength_unitsexpectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/css1/units/length_units-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorfastblockfloat016expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/fast/block/float/016-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorfastcssbidioverrideinanonymousblockexpectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/fast/css/bidi-override-in-anonymous-block-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorietestcentercss3bordersbackgroundsborderradiusinitialvalue001expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorietestcentercss3bordersbackgroundsborderradiusstyle001expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-style-001-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorietestcentercss3bordersbackgroundsborderradiusstyle002expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-style-002-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorietestcentercss3bordersbackgroundsborderradiusstyle004expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorietestcentercss3bordersbackgroundsborderradiuswiththreevalues001expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorietestcentercss3bordersbackgroundsborderradiuswithtwovalues001expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorietestcentercss3bordersbackgroundsbordertopleftradiusvalues003expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmaccss1unitslength_unitsexpectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/css1/units/length_units-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacfastcssbidioverrideinanonymousblockexpectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/fast/css/bidi-override-in-anonymous-block-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacfastmulticolspananonymousstyleinheritanceexpectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacfastrepaintrepaintduringscrollwithzoomexpectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/fast/repaint/repaint-during-scroll-with-zoom-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacietestcentercss3bordersbackgroundsborderradiusinitialvalue001expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacietestcentercss3bordersbackgroundsborderradiusstyle001expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-001-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacietestcentercss3bordersbackgroundsborderradiusstyle002expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-002-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacietestcentercss3bordersbackgroundsborderradiusstyle004expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacietestcentercss3bordersbackgroundsborderradiuswiththreevalues001expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacietestcentercss3bordersbackgroundsborderradiuswithtwovalues001expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacietestcentercss3bordersbackgroundsbordertopleftradiusvalues003expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacmediavideozoomexpectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/media/video-zoom-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacsvgcustomsvgfontsinhtmlexpectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/custom/svg-fonts-in-html-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacsvgzoompagezoombackgroundimagetiledexpectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-background-image-tiled-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacsvgzoompagezoombackgroundimagesexpectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-background-images-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacsvgzoompagezoomreplacedintrinsicratio001expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacsvgzoompagezoomsvgfloatborderpaddingexpectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-svg-float-border-padding-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmacsvgzoompagezoomsvgthroughobjectwithautosizeexpectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212LayoutTestsplatformmactablesmozilla_expected_failuresbugsbug10552expectedtxt">releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt</a></li>
<li><a href="#releasesWebKitGTKwebkit212SourceWebCoreChangeLog">releases/WebKitGTK/webkit-2.12/Source/WebCore/ChangeLog</a></li>
<li><a href="#releasesWebKitGTKwebkit212SourceWebCorecssStyleBuilderConverterh">releases/WebKitGTK/webkit-2.12/Source/WebCore/css/StyleBuilderConverter.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="releasesWebKitGTKwebkit212LayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/ChangeLog (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/ChangeLog        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/ChangeLog        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,3 +1,34 @@
</span><ins>+2016-04-04  Zalan Bujtas  &lt;zalan@apple.com&gt;
+
+        CSS Triangles Rendering Regression affecting CSS Ribbons.
+        https://bugs.webkit.org/show_bug.cgi?id=156121
+
+        Reviewed by Simon Fraser.
+
+        Rebeaseline to match current behaviour.
+
+        * fast/inline/hidpi-inline-text-decoration-with-subpixel-value-expected.html:
+        * platform/mac/css1/units/length_units-expected.txt:
+        * platform/mac/fast/css/bidi-override-in-anonymous-block-expected.txt:
+        * platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt:
+        * platform/mac/fast/repaint/repaint-during-scroll-with-zoom-expected.txt:
+        * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.txt:
+        * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-001-expected.txt:
+        * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-002-expected.txt:
+        * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.txt:
+        * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.txt:
+        * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.txt:
+        * platform/mac/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.txt:
+        * platform/mac/media/video-zoom-expected.txt:
+        * platform/mac/svg/custom/svg-fonts-in-html-expected.txt:
+        * platform/mac/svg/zoom/page/zoom-background-image-tiled-expected.txt:
+        * platform/mac/svg/zoom/page/zoom-background-images-expected.txt:
+        * platform/mac/svg/zoom/page/zoom-img-preserveAspectRatio-support-1-expected.txt:
+        * platform/mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt:
+        * platform/mac/svg/zoom/page/zoom-svg-float-border-padding-expected.txt:
+        * platform/mac/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt:
+        * platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt:
+
</ins><span class="cx"> 2016-03-31  Zalan Bujtas  &lt;zalan@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         putImageData leaves visible artifacts on retina display
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsfastinlinehidpiinlinetextdecorationwithsubpixelvalueexpectedhtml"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/fast/inline/hidpi-inline-text-decoration-with-subpixel-value-expected.html (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/fast/inline/hidpi-inline-text-decoration-with-subpixel-value-expected.html        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/fast/inline/hidpi-inline-text-decoration-with-subpixel-value-expected.html        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -25,7 +25,7 @@
</span><span class="cx"> 
</span><span class="cx">   for(i = 0; i &lt; 9; ++i) { 
</span><span class="cx">     var e = document.createElement(&quot;div&quot;);
</span><del>-    e.style.width = &quot;26.5px&quot;;
</del><ins>+    e.style.width = &quot;26px&quot;;
</ins><span class="cx">     e.style.height = &quot;10px&quot;;
</span><span class="cx">     e.style.left = 3 * 30 + &quot;px&quot;;
</span><span class="cx">     e.style.top = 36.5 + (30 * i) + &quot;px&quot;;
</span><span class="lines">@@ -34,19 +34,19 @@
</span><span class="cx"> 
</span><span class="cx">   for(i = 0; i &lt; 9; ++i) { 
</span><span class="cx">     var e = document.createElement(&quot;div&quot;);
</span><del>-    e.style.width = &quot;26.5px&quot;;
-    e.style.height = &quot;11px&quot;;
</del><ins>+    e.style.width = &quot;26px&quot;;
+    e.style.height = &quot;10px&quot;;
</ins><span class="cx">     e.style.left = 4 * 30 + &quot;px&quot;;
</span><del>-    e.style.top = 36 + (30 * i) + &quot;px&quot;;
</del><ins>+    e.style.top = 36.5 + (30 * i) + &quot;px&quot;;
</ins><span class="cx">     document.body.appendChild(e);
</span><span class="cx">   }
</span><span class="cx"> 
</span><span class="cx">   for(i = 0; i &lt; 9; ++i) { 
</span><span class="cx">     var e = document.createElement(&quot;div&quot;);
</span><del>-    e.style.width = &quot;27px&quot;;
-    e.style.height = &quot;11px&quot;;
</del><ins>+    e.style.width = &quot;26px&quot;;
+    e.style.height = &quot;10px&quot;;
</ins><span class="cx">     e.style.left = 5 * 30 + &quot;px&quot;;
</span><del>-    e.style.top = 36 + (30 * i) + &quot;px&quot;;
</del><ins>+    e.style.top = 36.5 + (30 * i) + &quot;px&quot;;
</ins><span class="cx">     document.body.appendChild(e);
</span><span class="cx">   }
</span><span class="cx"> 
</span><span class="lines">@@ -62,7 +62,7 @@
</span><span class="cx"> 
</span><span class="cx">   for(i = 0; i &lt; 9; ++i) { 
</span><span class="cx">     var e = document.createElement(&quot;div&quot;);
</span><del>-    e.style.width = &quot;26.5px&quot;;
</del><ins>+    e.style.width = &quot;26px&quot;;
</ins><span class="cx">     e.style.height = &quot;10px&quot;;
</span><span class="cx">     e.style.left = 8 * 30 + &quot;px&quot;;
</span><span class="cx">     e.style.top = 36 + (30 * i) + &quot;px&quot;;
</span><span class="lines">@@ -72,10 +72,10 @@
</span><span class="cx"> 
</span><span class="cx">   for(i = 0; i &lt; 9; ++i) { 
</span><span class="cx">     var e = document.createElement(&quot;div&quot;);
</span><del>-    e.style.width = &quot;26.5px&quot;;
-    e.style.height = &quot;11px&quot;;
</del><ins>+    e.style.width = &quot;26px&quot;;
+    e.style.height = &quot;10px&quot;;
</ins><span class="cx">     e.style.left = 9 * 30 + &quot;px&quot;;
</span><del>-    e.style.top = 35.5 + (30 * i) + &quot;px&quot;;
</del><ins>+    e.style.top = 36 + (30 * i) + &quot;px&quot;;
</ins><span class="cx">     e.style.borderWidth = &quot;1px&quot;;
</span><span class="cx">     document.body.appendChild(e);
</span><span class="cx">   }
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorcss1unitslength_unitsexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/css1/units/length_units-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/css1/units/length_units-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/css1/units/length_units-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -56,33 +56,33 @@
</span><span class="cx">       RenderBlock {P} at (48,565) size 736x20
</span><span class="cx">         RenderText {#text} at (0,0) size 603x19
</span><span class="cx">           text run at (0,0) width 603: &quot;This paragraph should have a left margin of 3 picas (the plus sign should make no difference).&quot;
</span><del>-      RenderBlock {P} at (0,625) size 784x235 [bgcolor=#00FFFF] [border: none (17.88px solid #800080)]
</del><ins>+      RenderBlock {P} at (0,625) size 784x235 [bgcolor=#00FFFF] [border: none (17.50px solid #800080)]
</ins><span class="cx">         RenderText {#text} at (17,1) size 310x45
</span><span class="cx">           text run at (17,1) width 310: &quot;This element has a &quot;
</span><span class="cx">         RenderInline {CODE} at (0,0) size 217x41
</span><span class="cx">           RenderText {#text} at (326,6) size 217x41
</span><span class="cx">             text run at (326,6) width 217: &quot;font-size&quot;
</span><del>-        RenderText {#text} at (542,1) size 55x45
-          text run at (542,1) width 55: &quot; of &quot;
</del><ins>+        RenderText {#text} at (542,1) size 54x45
+          text run at (542,1) width 54: &quot; of &quot;
</ins><span class="cx">         RenderInline {CODE} at (0,0) size 97x41
</span><del>-          RenderText {#text} at (596,6) size 97x41
-            text run at (596,6) width 97: &quot;40px&quot;
-        RenderText {#text} at (692,1) size 743x92
-          text run at (692,1) width 68: &quot; and&quot;
</del><ins>+          RenderText {#text} at (595,6) size 97x41
+            text run at (595,6) width 97: &quot;40px&quot;
+        RenderText {#text} at (691,1) size 743x92
+          text run at (691,1) width 69: &quot; and&quot;
</ins><span class="cx">           text run at (17,48) width 29: &quot;a &quot;
</span><span class="cx">         RenderInline {CODE} at (0,0) size 265x41
</span><span class="cx">           RenderText {#text} at (45,53) size 265x41
</span><span class="cx">             text run at (45,53) width 265: &quot;border-left&quot;
</span><span class="cx">         RenderText {#text} at (309,48) size 54x45
</span><span class="cx">           text run at (309,48) width 54: &quot; of &quot;
</span><del>-        RenderInline {CODE} at (0,0) size 386x41
-          RenderText {#text} at (362,53) size 386x41
-            text run at (362,53) width 386: &quot;1ex solid purple&quot;
-        RenderText {#text} at (747,48) size 741x186
-          text run at (747,48) width 11: &quot;.&quot;
</del><ins>+        RenderInline {CODE} at (0,0) size 385x41
+          RenderText {#text} at (362,53) size 385x41
+            text run at (362,53) width 385: &quot;1ex solid purple&quot;
+        RenderText {#text} at (746,48) size 740x186
+          text run at (746,48) width 11: &quot;.&quot;
</ins><span class="cx">           text run at (17,95) width 673: &quot;This should make the left border the same&quot;
</span><span class="cx">           text run at (17,142) width 710: &quot;number of pixels as the lower-case 'x' in this&quot;
</span><del>-          text run at (17,189) width 611: &quot;element's font, as well as solid purple.&quot;
</del><ins>+          text run at (17,189) width 610: &quot;element's font, as well as solid purple.&quot;
</ins><span class="cx">       RenderTable {TABLE} at (0,900) size 784x677 [border: (1px outset #808080)]
</span><span class="cx">         RenderTableSection {TBODY} at (1,1) size 782x675
</span><span class="cx">           RenderTableRow {TR} at (0,0) size 782x28
</span><span class="lines">@@ -131,30 +131,30 @@
</span><span class="cx">               RenderBlock {P} at (52,348) size 714x20
</span><span class="cx">                 RenderText {#text} at (0,0) size 603x19
</span><span class="cx">                   text run at (0,0) width 603: &quot;This paragraph should have a left margin of 3 picas (the plus sign should make no difference).&quot;
</span><del>-              RenderBlock {P} at (4,408) size 762x235 [bgcolor=#00FFFF] [border: none (17.88px solid #800080)]
</del><ins>+              RenderBlock {P} at (4,408) size 762x235 [bgcolor=#00FFFF] [border: none (17.50px solid #800080)]
</ins><span class="cx">                 RenderText {#text} at (17,1) size 310x45
</span><span class="cx">                   text run at (17,1) width 310: &quot;This element has a &quot;
</span><span class="cx">                 RenderInline {CODE} at (0,0) size 217x41
</span><span class="cx">                   RenderText {#text} at (326,6) size 217x41
</span><span class="cx">                     text run at (326,6) width 217: &quot;font-size&quot;
</span><del>-                RenderText {#text} at (542,1) size 55x45
-                  text run at (542,1) width 55: &quot; of &quot;
</del><ins>+                RenderText {#text} at (542,1) size 54x45
+                  text run at (542,1) width 54: &quot; of &quot;
</ins><span class="cx">                 RenderInline {CODE} at (0,0) size 97x41
</span><del>-                  RenderText {#text} at (596,6) size 97x41
-                    text run at (596,6) width 97: &quot;40px&quot;
-                RenderText {#text} at (692,1) size 743x92
-                  text run at (692,1) width 68: &quot; and&quot;
</del><ins>+                  RenderText {#text} at (595,6) size 97x41
+                    text run at (595,6) width 97: &quot;40px&quot;
+                RenderText {#text} at (691,1) size 743x92
+                  text run at (691,1) width 69: &quot; and&quot;
</ins><span class="cx">                   text run at (17,48) width 29: &quot;a &quot;
</span><span class="cx">                 RenderInline {CODE} at (0,0) size 265x41
</span><span class="cx">                   RenderText {#text} at (45,53) size 265x41
</span><span class="cx">                     text run at (45,53) width 265: &quot;border-left&quot;
</span><span class="cx">                 RenderText {#text} at (309,48) size 54x45
</span><span class="cx">                   text run at (309,48) width 54: &quot; of &quot;
</span><del>-                RenderInline {CODE} at (0,0) size 386x41
-                  RenderText {#text} at (362,53) size 386x41
-                    text run at (362,53) width 386: &quot;1ex solid purple&quot;
-                RenderText {#text} at (747,48) size 741x186
-                  text run at (747,48) width 11: &quot;.&quot;
</del><ins>+                RenderInline {CODE} at (0,0) size 385x41
+                  RenderText {#text} at (362,53) size 385x41
+                    text run at (362,53) width 385: &quot;1ex solid purple&quot;
+                RenderText {#text} at (746,48) size 740x186
+                  text run at (746,48) width 11: &quot;.&quot;
</ins><span class="cx">                   text run at (17,95) width 673: &quot;This should make the left border the same&quot;
</span><span class="cx">                   text run at (17,142) width 710: &quot;number of pixels as the lower-case 'x' in this&quot;
</span><del>-                  text run at (17,189) width 611: &quot;element's font, as well as solid purple.&quot;
</del><ins>+                  text run at (17,189) width 610: &quot;element's font, as well as solid purple.&quot;
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorfastblockfloat016expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/fast/block/float/016-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/fast/block/float/016-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/fast/block/float/016-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -6,8 +6,8 @@
</span><span class="cx">       RenderBlock {UL} at (185,0) size 414x192
</span><span class="cx">         RenderListItem {LI} at (0,48) size 284x72
</span><span class="cx">           RenderBlock {A} at (123,0) size 161x139 [color=#CCCCCC]
</span><del>-            RenderBlock {B} at (0,0) size 160x71 [border: none (40px solid #00000000) (69.27px solid #CCCCCC) (40px solid #00000000)]
-            RenderBlock {B} at (0,70) size 160x71 [border: (69.27px solid #CCCCCC) (40px solid #00000000) none (40px solid #00000000)]
</del><ins>+            RenderBlock {B} at (0,0) size 160x70 [border: none (40px solid #00000000) (69px solid #CCCCCC) (40px solid #00000000)]
+            RenderBlock {B} at (0,70) size 160x70 [border: (69px solid #CCCCCC) (40px solid #00000000) none (40px solid #00000000)]
</ins><span class="cx">             RenderBlock {SPAN} at (8,61) size 144x21 [color=#000000]
</span><span class="cx">               RenderInline {ABBR} at (0,0) size 33x20
</span><span class="cx">                 RenderText {#text} at (19,0) size 33x20
</span><span class="lines">@@ -16,30 +16,30 @@
</span><span class="cx">                 text run at (51,0) width 74: &quot; examples&quot;
</span><span class="cx">         RenderListItem {LI} at (0,119) size 247x72
</span><span class="cx">           RenderBlock {A} at (0,0) size 160x139 [color=#CCCCCC]
</span><del>-            RenderBlock {B} at (0,0) size 160x71 [border: none (40px solid #00000000) (69.27px solid #CCCCCC) (40px solid #00000000)]
-            RenderBlock {B} at (0,70) size 160x71 [border: (69.27px solid #CCCCCC) (40px solid #00000000) none (40px solid #00000000)]
</del><ins>+            RenderBlock {B} at (0,0) size 160x70 [border: none (40px solid #00000000) (69px solid #CCCCCC) (40px solid #00000000)]
+            RenderBlock {B} at (0,70) size 160x70 [border: (69px solid #CCCCCC) (40px solid #00000000) none (40px solid #00000000)]
</ins><span class="cx">             RenderBlock {SPAN} at (8,61) size 144x21 [color=#000000]
</span><span class="cx">               RenderText {#text} at (41,0) size 62x20
</span><span class="cx">                 text run at (41,0) width 62: &quot;Favelets&quot;
</span><span class="cx">         RenderListItem {LI} at (246,119) size 161x72
</span><span class="cx">           RenderBlock {A} at (0,0) size 160x139 [color=#CCCCCC]
</span><del>-            RenderBlock {B} at (0,0) size 160x71 [border: none (40px solid #00000000) (69.27px solid #CCCCCC) (40px solid #00000000)]
-            RenderBlock {B} at (0,70) size 160x71 [border: (69.27px solid #CCCCCC) (40px solid #00000000) none (40px solid #00000000)]
</del><ins>+            RenderBlock {B} at (0,0) size 160x70 [border: none (40px solid #00000000) (69px solid #CCCCCC) (40px solid #00000000)]
+            RenderBlock {B} at (0,70) size 160x70 [border: (69px solid #CCCCCC) (40px solid #00000000) none (40px solid #00000000)]
</ins><span class="cx">             RenderBlock {SPAN} at (8,61) size 144x21 [color=#000000]
</span><span class="cx">               RenderInline {ABBR} at (0,0) size 24x20
</span><span class="cx">                 RenderText {#text} at (60,0) size 24x20
</span><span class="cx">                   text run at (60,0) width 24: &quot;CV&quot;
</span><span class="cx">         RenderListItem {LI} at (0,190) size 284x72
</span><span class="cx">           RenderBlock {A} at (123,0) size 161x139 [color=#CCCCCC]
</span><del>-            RenderBlock {B} at (0,0) size 160x71 [border: none (40px solid #00000000) (69.27px solid #CCCCCC) (40px solid #00000000)]
-            RenderBlock {B} at (0,70) size 160x71 [border: (69.27px solid #CCCCCC) (40px solid #00000000) none (40px solid #00000000)]
</del><ins>+            RenderBlock {B} at (0,0) size 160x70 [border: none (40px solid #00000000) (69px solid #CCCCCC) (40px solid #00000000)]
+            RenderBlock {B} at (0,70) size 160x70 [border: (69px solid #CCCCCC) (40px solid #00000000) none (40px solid #00000000)]
</ins><span class="cx">             RenderBlock {SPAN} at (8,61) size 144x21 [color=#000000]
</span><span class="cx">               RenderText {#text} at (61,0) size 22x20
</span><span class="cx">                 text run at (61,0) width 22: &quot;log&quot;
</span><span class="cx">         RenderListItem {LI} at (0,261) size 247x72
</span><span class="cx">           RenderBlock {A} at (0,0) size 160x139 [color=#CCCCCC]
</span><del>-            RenderBlock {B} at (0,0) size 160x71 [border: none (40px solid #00000000) (69.27px solid #CCCCCC) (40px solid #00000000)]
-            RenderBlock {B} at (0,70) size 160x71 [border: (69.27px solid #CCCCCC) (40px solid #00000000) none (40px solid #00000000)]
</del><ins>+            RenderBlock {B} at (0,0) size 160x70 [border: none (40px solid #00000000) (69px solid #CCCCCC) (40px solid #00000000)]
+            RenderBlock {B} at (0,70) size 160x70 [border: (69px solid #CCCCCC) (40px solid #00000000) none (40px solid #00000000)]
</ins><span class="cx">             RenderBlock {SPAN} at (8,61) size 144x21 [color=#000000]
</span><span class="cx">               RenderText {#text} at (0,0) size 52x20
</span><span class="cx">                 text run at (0,0) width 52: &quot;simple &quot;
</span><span class="lines">@@ -50,15 +50,15 @@
</span><span class="cx">                 text run at (105,0) width 39: &quot; tests&quot;
</span><span class="cx">         RenderListItem {LI} at (246,261) size 161x72
</span><span class="cx">           RenderBlock {A} at (0,0) size 160x139 [color=#CCCCCC]
</span><del>-            RenderBlock {B} at (0,0) size 160x71 [border: none (40px solid #00000000) (69.27px solid #CCCCCC) (40px solid #00000000)]
-            RenderBlock {B} at (0,70) size 160x71 [border: (69.27px solid #CCCCCC) (40px solid #00000000) none (40px solid #00000000)]
</del><ins>+            RenderBlock {B} at (0,0) size 160x70 [border: none (40px solid #00000000) (69px solid #CCCCCC) (40px solid #00000000)]
+            RenderBlock {B} at (0,70) size 160x70 [border: (69px solid #CCCCCC) (40px solid #00000000) none (40px solid #00000000)]
</ins><span class="cx">             RenderBlock {SPAN} at (8,61) size 144x21 [color=#000000]
</span><span class="cx">               RenderText {#text} at (36,0) size 72x20
</span><span class="cx">                 text run at (36,0) width 72: &quot;entrances&quot;
</span><span class="cx">         RenderListItem {LI} at (0,332) size 284x72
</span><span class="cx">           RenderBlock {A} at (123,0) size 161x139 [color=#CCCCCC]
</span><del>-            RenderBlock {B} at (0,0) size 160x71 [border: none (40px solid #00000000) (69.27px solid #CCCCCC) (40px solid #00000000)]
-            RenderBlock {B} at (0,70) size 160x71 [border: (69.27px solid #CCCCCC) (40px solid #00000000) none (40px solid #00000000)]
</del><ins>+            RenderBlock {B} at (0,0) size 160x70 [border: none (40px solid #00000000) (69px solid #CCCCCC) (40px solid #00000000)]
+            RenderBlock {B} at (0,70) size 160x70 [border: (69px solid #CCCCCC) (40px solid #00000000) none (40px solid #00000000)]
</ins><span class="cx">             RenderBlock {SPAN} at (8,61) size 144x21 [color=#000000]
</span><span class="cx">               RenderText {#text} at (59,0) size 26x20
</span><span class="cx">                 text run at (59,0) width 26: &quot;exit&quot;
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorfastcssbidioverrideinanonymousblockexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/fast/css/bidi-override-in-anonymous-block-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/fast/css/bidi-override-in-anonymous-block-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/fast/css/bidi-override-in-anonymous-block-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,161 +1,161 @@
</span><del>-layer at (0,0) size 800x1308
</del><ins>+layer at (0,0) size 800x1300
</ins><span class="cx">   RenderView at (0,0) size 800x600
</span><del>-layer at (0,0) size 800x1308
-  RenderBlock {HTML} at (0,0) size 800x1309
-    RenderBody {BODY} at (8,16) size 784x1285
</del><ins>+layer at (0,0) size 800x1300
+  RenderBlock {HTML} at (0,0) size 800x1301
+    RenderBody {BODY} at (8,16) size 784x1277
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x20
</span><span class="cx">         RenderText {#text} at (0,0) size 164x19
</span><span class="cx">           text run at (0,0) width 164: &quot;div, span, nested div/span&quot;
</span><span class="cx">       RenderBlock {P} at (0,36) size 784x20
</span><span class="cx">         RenderText {#text} at (0,0) size 66x19
</span><span class="cx">           text run at (0,0) width 66: &quot;Single div&quot;
</span><del>-      RenderBlock {DIV} at (1,72) size 782x23 [border: (1.42px solid #000000)]
-        RenderText {#text} at (757,1) size 23x19
-          text run at (757,1) width 23 RTL override: &quot;abc&quot;
-      RenderBlock {P} at (0,110) size 784x21
</del><ins>+      RenderBlock {DIV} at (1,72) size 782x22 [border: (1px solid #000000)]
+        RenderText {#text} at (757,1) size 24x19
+          text run at (757,1) width 24 RTL override: &quot;abc&quot;
+      RenderBlock {P} at (0,110) size 784x20
</ins><span class="cx">         RenderText {#text} at (0,0) size 419x19
</span><span class="cx">           text run at (0,0) width 419: &quot;The following 2 lines should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock {DIV} at (1,146) size 782x44 [border: (1.42px solid #000000)]
-        RenderBlock (anonymous) at (1,1) size 779x21
-          RenderText {#text} at (756,0) size 23x19
-            text run at (756,0) width 23 RTL override: &quot;abc&quot;
-        RenderBlock {DIV} at (1,21) size 779x21
-          RenderText {#text} at (756,0) size 23x19
-            text run at (756,0) width 23: &quot;cba&quot;
-      RenderBlock {P} at (0,205) size 784x21
</del><ins>+      RenderBlock {DIV} at (1,146) size 782x42 [border: (1px solid #000000)]
+        RenderBlock (anonymous) at (1,1) size 780x20
+          RenderText {#text} at (756,0) size 24x19
+            text run at (756,0) width 24 RTL override: &quot;abc&quot;
+        RenderBlock {DIV} at (1,21) size 780x20
+          RenderText {#text} at (756,0) size 24x19
+            text run at (756,0) width 24: &quot;cba&quot;
+      RenderBlock {P} at (0,204) size 784x20
</ins><span class="cx">         RenderText {#text} at (0,0) size 426x19
</span><span class="cx">           text run at (0,0) width 426: &quot;The following 2 textes should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock {DIV} at (1,241) size 782x24 [border: (1.42px solid #000000)]
-        RenderText {#text} at (753,1) size 27x19
-          text run at (753,1) width 27 RTL override: &quot;abc &quot;
</del><ins>+      RenderBlock {DIV} at (1,240) size 782x22 [border: (1px solid #000000)]
+        RenderText {#text} at (753,1) size 28x19
+          text run at (753,1) width 28 RTL override: &quot;abc &quot;
</ins><span class="cx">         RenderInline {SPAN} at (0,0) size 23x19
</span><span class="cx">           RenderText {#text} at (731,1) size 23x19
</span><span class="cx">             text run at (731,1) width 23 RTL override: &quot;abc&quot;
</span><del>-      RenderBlock {P} at (0,280) size 784x21
</del><ins>+      RenderBlock {P} at (0,278) size 784x20
</ins><span class="cx">         RenderText {#text} at (0,0) size 419x19
</span><span class="cx">           text run at (0,0) width 419: &quot;The following 2 lines should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock {DIV} at (1,316) size 782x44 [border: (1.42px solid #000000)]
-        RenderBlock {DIV} at (1,1) size 779x21
-          RenderText {#text} at (756,0) size 23x19
-            text run at (756,0) width 23: &quot;cba&quot;
-        RenderBlock (anonymous) at (1,21) size 779x21
-          RenderText {#text} at (756,0) size 23x19
-            text run at (756,0) width 23 RTL override: &quot;abc&quot;
-      RenderBlock {P} at (0,375) size 784x21
</del><ins>+      RenderBlock {DIV} at (1,314) size 782x42 [border: (1px solid #000000)]
+        RenderBlock {DIV} at (1,1) size 780x20
+          RenderText {#text} at (756,0) size 24x19
+            text run at (756,0) width 24: &quot;cba&quot;
+        RenderBlock (anonymous) at (1,21) size 780x20
+          RenderText {#text} at (756,0) size 24x19
+            text run at (756,0) width 24 RTL override: &quot;abc&quot;
+      RenderBlock {P} at (0,372) size 784x20
</ins><span class="cx">         RenderText {#text} at (0,0) size 426x19
</span><span class="cx">           text run at (0,0) width 426: &quot;The following 2 textes should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock {DIV} at (1,411) size 782x24 [border: (1.42px solid #000000)]
-        RenderInline {SPAN} at (0,0) size 27x19
-          RenderText {#text} at (753,1) size 27x19
-            text run at (753,1) width 27 RTL override: &quot;abc &quot;
</del><ins>+      RenderBlock {DIV} at (1,408) size 782x22 [border: (1px solid #000000)]
+        RenderInline {SPAN} at (0,0) size 28x19
+          RenderText {#text} at (753,1) size 28x19
+            text run at (753,1) width 28 RTL override: &quot;abc &quot;
</ins><span class="cx">         RenderText {#text} at (731,1) size 23x19
</span><span class="cx">           text run at (731,1) width 23 RTL override: &quot;abc&quot;
</span><del>-      RenderBlock {P} at (0,450) size 784x21
</del><ins>+      RenderBlock {P} at (0,446) size 784x20
</ins><span class="cx">         RenderText {#text} at (0,0) size 75x19
</span><span class="cx">           text run at (0,0) width 75: &quot;Single span&quot;
</span><del>-      RenderBlock (anonymous) at (0,486) size 784x21
-        RenderInline {SPAN} at (0,0) size 26x23 [border: (1.42px solid #000000)]
-          RenderText {#text} at (2,0) size 24x19
-            text run at (2,0) width 24 RTL override: &quot;abc&quot;
</del><ins>+      RenderBlock (anonymous) at (0,482) size 784x20
+        RenderInline {SPAN} at (0,0) size 25x21 [border: (1px solid #000000)]
+          RenderText {#text} at (2,0) size 23x19
+            text run at (2,0) width 23 RTL override: &quot;abc&quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {P} at (0,522) size 784x21
</del><ins>+      RenderBlock {P} at (0,518) size 784x20
</ins><span class="cx">         RenderText {#text} at (0,0) size 426x19
</span><span class="cx">           text run at (0,0) width 426: &quot;The following 2 textes should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock (anonymous) at (0,558) size 784x21
-        RenderInline {SPAN} at (0,0) size 52x23 [border: (1.42px solid #000000)]
-          RenderText {#text} at (25,0) size 27x19
-            text run at (25,0) width 27 RTL override: &quot;abc &quot;
-          RenderInline {SPAN} at (0,0) size 24x19
-            RenderText {#text} at (2,0) size 24x19
-              text run at (2,0) width 24 RTL override: &quot;abc&quot;
</del><ins>+      RenderBlock (anonymous) at (0,554) size 784x20
+        RenderInline {SPAN} at (0,0) size 51x21 [border: (1px solid #000000)]
+          RenderText {#text} at (24,0) size 27x19
+            text run at (24,0) width 27 RTL override: &quot;abc &quot;
+          RenderInline {SPAN} at (0,0) size 23x19
+            RenderText {#text} at (2,0) size 23x19
+              text run at (2,0) width 23 RTL override: &quot;abc&quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {P} at (0,594) size 784x21
</del><ins>+      RenderBlock {P} at (0,590) size 784x20
</ins><span class="cx">         RenderText {#text} at (0,0) size 426x19
</span><span class="cx">           text run at (0,0) width 426: &quot;The following 2 textes should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock (anonymous) at (0,630) size 784x21
-        RenderInline {SPAN} at (0,0) size 52x23 [border: (1.42px solid #000000)]
</del><ins>+      RenderBlock (anonymous) at (0,626) size 784x20
+        RenderInline {SPAN} at (0,0) size 51x21 [border: (1px solid #000000)]
</ins><span class="cx">           RenderInline {SPAN} at (0,0) size 27x19
</span><del>-            RenderText {#text} at (25,0) size 27x19
-              text run at (25,0) width 27 RTL override: &quot;abc &quot;
-          RenderText {#text} at (2,0) size 24x19
-            text run at (2,0) width 24 RTL override: &quot;abc&quot;
</del><ins>+            RenderText {#text} at (24,0) size 27x19
+              text run at (24,0) width 27 RTL override: &quot;abc &quot;
+          RenderText {#text} at (2,0) size 23x19
+            text run at (2,0) width 23 RTL override: &quot;abc&quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {P} at (0,666) size 784x21
</del><ins>+      RenderBlock {P} at (0,662) size 784x20
</ins><span class="cx">         RenderText {#text} at (0,0) size 426x19
</span><span class="cx">           text run at (0,0) width 426: &quot;The following 2 textes should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock (anonymous) at (0,702) size 784x21
-        RenderInline {SPAN} at (0,0) size 24x23 [border: (1.42px solid #000000)]
</del><ins>+      RenderBlock (anonymous) at (0,698) size 784x20
+        RenderInline {SPAN} at (0,0) size 24x21 [border: (1px solid #000000)]
</ins><span class="cx">           RenderText {#text} at (0,0) size 23x19
</span><span class="cx">             text run at (0,0) width 23 RTL override: &quot;abc&quot;
</span><del>-      RenderBlock (anonymous) at (0,722) size 784x21
</del><ins>+      RenderBlock (anonymous) at (0,718) size 784x20
</ins><span class="cx">         RenderBlock {DIV} at (0,0) size 784x20
</span><span class="cx">           RenderText {#text} at (761,0) size 23x19
</span><span class="cx">             text run at (761,0) width 23: &quot;cba&quot;
</span><del>-      RenderBlock (anonymous) at (0,742) size 784x21
-        RenderInline {SPAN} at (0,0) size 2x23 [border: (1.42px solid #000000)]
</del><ins>+      RenderBlock (anonymous) at (0,738) size 784x20
+        RenderInline {SPAN} at (0,0) size 2x21 [border: (1px solid #000000)]
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {P} at (0,778) size 784x21
</del><ins>+      RenderBlock {P} at (0,774) size 784x20
</ins><span class="cx">         RenderText {#text} at (0,0) size 426x19
</span><span class="cx">           text run at (0,0) width 426: &quot;The following 2 textes should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock (anonymous) at (0,814) size 784x21
-        RenderInline {SPAN} at (0,0) size 2x23 [border: (1.42px solid #000000)]
-      RenderBlock (anonymous) at (0,834) size 784x21
</del><ins>+      RenderBlock (anonymous) at (0,810) size 784x20
+        RenderInline {SPAN} at (0,0) size 1x21 [border: (1px solid #000000)]
+      RenderBlock (anonymous) at (0,830) size 784x20
</ins><span class="cx">         RenderBlock {DIV} at (0,0) size 784x20
</span><span class="cx">           RenderText {#text} at (761,0) size 23x19
</span><span class="cx">             text run at (761,0) width 23: &quot;cba&quot;
</span><del>-      RenderBlock (anonymous) at (0,854) size 784x21
-        RenderInline {SPAN} at (0,0) size 25x23 [border: (1.42px solid #000000)]
-          RenderText {#text} at (2,0) size 24x19
-            text run at (2,0) width 24 RTL override: &quot;abc&quot;
</del><ins>+      RenderBlock (anonymous) at (0,850) size 784x20
+        RenderInline {SPAN} at (0,0) size 24x21 [border: (1px solid #000000)]
+          RenderText {#text} at (2,0) size 23x19
+            text run at (2,0) width 23 RTL override: &quot;abc&quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {P} at (0,890) size 784x21
</del><ins>+      RenderBlock {P} at (0,886) size 784x20
</ins><span class="cx">         RenderText {#text} at (0,0) size 30x19
</span><span class="cx">           text run at (0,0) width 30: &quot;ruby&quot;
</span><del>-      RenderBlock {DIV} at (0,926) size 784x35 [border: (1.42px solid #000000)]
-        RenderRuby (inline) {RUBY} at (0,0) size 23x20
-          RenderRubyRun (anonymous) at (166,12) size 23x21
</del><ins>+      RenderBlock {DIV} at (0,922) size 784x33 [border: (1px solid #000000)]
+        RenderRuby (inline) {RUBY} at (0,0) size 23x19
+          RenderRubyRun (anonymous) at (166,12) size 23x20
</ins><span class="cx">             RenderRubyText {RT} at (0,-11) size 23x12
</span><span class="cx">               RenderText {#text} at (5,0) size 12x11
</span><span class="cx">                 text run at (5,0) width 12: &quot;def&quot;
</span><span class="cx">             RenderRubyBase (anonymous) at (0,0) size 23x20
</span><span class="cx">               RenderText {#text} at (0,0) size 23x19
</span><span class="cx">                 text run at (0,0) width 23 RTL override: &quot;abc&quot;
</span><del>-        RenderText {#text} at (161,12) size 4x20
-          text run at (161,12) width 4 RTL: &quot; &quot;
-        RenderRuby (inline) {RUBY} at (0,0) size 23x20
-          RenderRubyRun (anonymous) at (137,12) size 23x21
</del><ins>+        RenderText {#text} at (160,12) size 5x19
+          text run at (160,12) width 5 RTL: &quot; &quot;
+        RenderRuby (inline) {RUBY} at (0,0) size 24x19
+          RenderRubyRun (anonymous) at (136,12) size 24x20
</ins><span class="cx">             RenderRubyText {RT} at (0,-11) size 23x12
</span><span class="cx">               RenderText {#text} at (5,0) size 12x11
</span><span class="cx">                 text run at (5,0) width 12 RTL override: &quot;def&quot;
</span><span class="cx">             RenderRubyBase (anonymous) at (0,0) size 23x20
</span><span class="cx">               RenderText {#text} at (0,0) size 23x19
</span><span class="cx">                 text run at (0,0) width 23 RTL override: &quot;abc&quot;
</span><del>-        RenderText {#text} at (131,12) size 5x20
</del><ins>+        RenderText {#text} at (131,12) size 5x19
</ins><span class="cx">           text run at (131,12) width 5 RTL: &quot; &quot;
</span><del>-        RenderRuby (inline) {RUBY} at (0,0) size 23x20
-          RenderRubyRun (anonymous) at (108,12) size 23x21
</del><ins>+        RenderRuby (inline) {RUBY} at (0,0) size 24x19
+          RenderRubyRun (anonymous) at (107,12) size 24x20
</ins><span class="cx">             RenderRubyBase (anonymous) at (0,0) size 23x20
</span><span class="cx">               RenderText {#text} at (0,0) size 23x19
</span><span class="cx">                 text run at (0,0) width 23 RTL override: &quot;abc&quot;
</span><del>-        RenderText {#text} at (102,12) size 5x20
</del><ins>+        RenderText {#text} at (102,12) size 5x19
</ins><span class="cx">           text run at (102,12) width 5 RTL: &quot; &quot;
</span><del>-        RenderRuby (inline) {RUBY} at (0,0) size 13x20
</del><ins>+        RenderRuby (inline) {RUBY} at (0,0) size 13x19
</ins><span class="cx">           RenderRubyRun (anonymous) at (89,29) size 13x0
</span><span class="cx">             RenderRubyText {RT} at (0,-11) size 12x12
</span><span class="cx">               RenderText {#text} at (0,0) size 13x11
</span><span class="cx">                 text run at (0,0) width 12: &quot;def&quot;
</span><del>-        RenderText {#text} at (84,12) size 5x20
</del><ins>+        RenderText {#text} at (84,12) size 5x19
</ins><span class="cx">           text run at (84,12) width 5 RTL: &quot; &quot;
</span><del>-        RenderRuby (inline) {RUBY} at (0,0) size 24x20
-          RenderRubyRun (anonymous) at (60,12) size 24x21
</del><ins>+        RenderRuby (inline) {RUBY} at (0,0) size 23x19
+          RenderRubyRun (anonymous) at (60,12) size 23x20
</ins><span class="cx">             RenderRubyBase (anonymous) at (0,0) size 23x20
</span><span class="cx">               RenderInline {RB} at (0,0) size 23x19
</span><span class="cx">                 RenderText {#text} at (0,0) size 23x19
</span><span class="cx">                   text run at (0,0) width 23 RTL override: &quot;abc&quot;
</span><del>-        RenderText {#text} at (55,12) size 5x20
</del><ins>+        RenderText {#text} at (55,12) size 5x19
</ins><span class="cx">           text run at (55,12) width 5 RTL: &quot; &quot;
</span><del>-        RenderRuby (inline) {RUBY} at (0,0) size 24x20
-          RenderRubyRun (anonymous) at (31,12) size 24x21
</del><ins>+        RenderRuby (inline) {RUBY} at (0,0) size 23x19
+          RenderRubyRun (anonymous) at (31,12) size 23x20
</ins><span class="cx">             RenderRubyText {RT} at (0,-11) size 23x12
</span><span class="cx">               RenderText {#text} at (5,0) size 12x11
</span><span class="cx">                 text run at (5,0) width 12: &quot;def&quot;
</span><span class="lines">@@ -163,10 +163,10 @@
</span><span class="cx">               RenderInline {RB} at (0,0) size 23x19
</span><span class="cx">                 RenderText {#text} at (0,0) size 23x19
</span><span class="cx">                   text run at (0,0) width 23 RTL override: &quot;abc&quot;
</span><del>-        RenderText {#text} at (26,12) size 5x20
</del><ins>+        RenderText {#text} at (26,12) size 5x19
</ins><span class="cx">           text run at (26,12) width 5 RTL: &quot; &quot;
</span><del>-        RenderRuby (inline) {RUBY} at (0,0) size 24x20
-          RenderRubyRun (anonymous) at (2,12) size 24x21
</del><ins>+        RenderRuby (inline) {RUBY} at (0,0) size 23x19
+          RenderRubyRun (anonymous) at (2,12) size 23x20
</ins><span class="cx">             RenderRubyText {RT} at (0,-11) size 23x12
</span><span class="cx">               RenderText {#text} at (5,0) size 12x11
</span><span class="cx">                 text run at (5,0) width 12: &quot;def&quot;
</span><span class="lines">@@ -175,52 +175,52 @@
</span><span class="cx">                 RenderText {#text} at (0,0) size 23x19
</span><span class="cx">                   text run at (0,0) width 23 RTL override: &quot;abc&quot;
</span><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {P} at (0,976) size 784x21
</del><ins>+      RenderBlock {P} at (0,971) size 784x20
</ins><span class="cx">         RenderText {#text} at (0,0) size 426x19
</span><span class="cx">           text run at (0,0) width 426: &quot;The following 2 tables should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderTable {TABLE} at (1,1012) size 85x73 [border: (1.42px solid #808080)]
</del><ins>+      RenderTable {TABLE} at (1,1007) size 85x72 [border: (1px solid #808080)]
</ins><span class="cx">         RenderBlock {CAPTION} at (0,0) size 85x20
</span><span class="cx">           RenderText {#text} at (0,0) size 85x19
</span><span class="cx">             text run at (0,0) width 85: &quot;NormalTable&quot;
</span><del>-        RenderTableSection {TBODY} at (1,21) size 82x51
-          RenderTableRow {TR} at (0,2) size 82x22
-            RenderTableCell {TD} at (43,2) size 37x22 [r=0 c=0 rs=1 cs=1]
</del><ins>+        RenderTableSection {TBODY} at (1,21) size 83x50
+          RenderTableRow {TR} at (0,2) size 83x22
+            RenderTableCell {TD} at (43,2) size 38x22 [r=0 c=0 rs=1 cs=1]
</ins><span class="cx">               RenderText {#text} at (13,1) size 23x19
</span><span class="cx">                 text run at (13,1) width 23: &quot;abc&quot;
</span><span class="cx">             RenderTableCell {TD} at (2,2) size 40x22 [r=0 c=1 rs=1 cs=1]
</span><del>-              RenderText {#text} at (17,1) size 22x19
-                text run at (17,1) width 22: &quot;def&quot;
-          RenderTableRow {TR} at (0,26) size 82x22
-            RenderTableCell {TD} at (43,26) size 37x22 [r=1 c=0 rs=1 cs=1]
</del><ins>+              RenderText {#text} at (18,1) size 21x19
+                text run at (18,1) width 21: &quot;def&quot;
+          RenderTableRow {TR} at (0,26) size 83x22
+            RenderTableCell {TD} at (43,26) size 38x22 [r=1 c=0 rs=1 cs=1]
</ins><span class="cx">               RenderText {#text} at (18,1) size 18x19
</span><span class="cx">                 text run at (18,1) width 18: &quot;hij&quot;
</span><span class="cx">             RenderTableCell {TD} at (2,26) size 40x22 [r=1 c=1 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (14,1) size 25x19
</span><span class="cx">                 text run at (14,1) width 25: &quot;opq&quot;
</span><del>-      RenderTable {DIV} at (1,1086) size 145x64 [border: (1.42px solid #000000)]
</del><ins>+      RenderTable {DIV} at (1,1080) size 145x63 [border: (1px solid #000000)]
</ins><span class="cx">         RenderBlock {DIV} at (0,0) size 144x20
</span><span class="cx">           RenderText {#text} at (0,0) size 144x19
</span><span class="cx">             text run at (0,0) width 144: &quot;AnonymousTableRow&quot;
</span><del>-        RenderTableSection (anonymous) at (1,21) size 142x41
-          RenderTableRow {DIV} at (0,0) size 141x20
-            RenderTableCell {DIV} at (73,0) size 68x20 [r=0 c=0 rs=1 cs=1]
-              RenderText {#text} at (45,0) size 23x19
-                text run at (45,0) width 23: &quot;abc&quot;
</del><ins>+        RenderTableSection (anonymous) at (1,21) size 142x40
+          RenderTableRow {DIV} at (0,0) size 142x20
+            RenderTableCell {DIV} at (73,0) size 69x20 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (45,0) size 24x19
+                text run at (45,0) width 24: &quot;abc&quot;
</ins><span class="cx">             RenderTableCell {DIV} at (0,0) size 74x20 [r=0 c=1 rs=1 cs=1]
</span><del>-              RenderText {#text} at (52,0) size 22x19
-                text run at (52,0) width 22: &quot;def&quot;
-          RenderTableRow {DIV} at (0,20) size 141x20
-            RenderTableCell {DIV} at (73,20) size 68x20 [r=1 c=0 rs=1 cs=1]
-              RenderText {#text} at (50,0) size 18x19
-                text run at (50,0) width 18: &quot;hij&quot;
</del><ins>+              RenderText {#text} at (53,0) size 21x19
+                text run at (53,0) width 21: &quot;def&quot;
+          RenderTableRow {DIV} at (0,20) size 142x20
+            RenderTableCell {DIV} at (73,20) size 69x20 [r=1 c=0 rs=1 cs=1]
+              RenderText {#text} at (51,0) size 18x19
+                text run at (51,0) width 18: &quot;hij&quot;
</ins><span class="cx">             RenderTableCell {DIV} at (0,20) size 74x20 [r=1 c=1 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (49,0) size 25x19
</span><span class="cx">                 text run at (49,0) width 25: &quot;opq&quot;
</span><del>-      RenderBlock {P} at (0,1165) size 784x21
</del><ins>+      RenderBlock {P} at (0,1158) size 784x21
</ins><span class="cx">         RenderText {#text} at (0,0) size 505x19
</span><span class="cx">           text run at (0,0) width 505: &quot;Anonymous TABLE, TABLE_ROW, TABLE_ROW_GROUP, TABLE_CELL&quot;
</span><del>-      RenderBlock {DIV} at (0,1201) size 784x84 [border: (1.42px solid #000000)]
-        RenderTable at (1,1) size 25x81
</del><ins>+      RenderBlock {DIV} at (0,1194) size 784x83 [border: (1px solid #000000)]
+        RenderTable at (1,1) size 24x80
</ins><span class="cx">           RenderTableSection (anonymous) at (0,20) size 24x40
</span><span class="cx">             RenderTableRow {DIV} at (0,0) size 24x20
</span><span class="cx">               RenderTableCell (anonymous) at (0,0) size 24x20 [r=0 c=0 rs=1 cs=1]
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorietestcentercss3bordersbackgroundsborderradiusinitialvalue001expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,10 +1,10 @@
</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 800x341
-  RenderBlock {HTML} at (0,0) size 800x341
-    RenderBody {BODY} at (8,16) size 784x315
</del><ins>+layer at (0,0) size 800x340
+  RenderBlock {HTML} at (0,0) size 800x340
+    RenderBody {BODY} at (8,16) size 784x314
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x20
</span><span class="cx">         RenderText {#text} at (0,0) size 265x19
</span><span class="cx">           text run at (0,0) width 265: &quot;Test passes if the two boxes are identical.&quot;
</span><del>-      RenderBlock {DIV} at (10,36) size 135x135 [border: (19.19px solid #000000)]
-      RenderBlock {DIV} at (10,180) size 135x135 [border: (19.19px solid #000000)]
</del><ins>+      RenderBlock {DIV} at (10,36) size 134x134 [border: (19px solid #000000)]
+      RenderBlock {DIV} at (10,180) size 134x134 [border: (19px solid #000000)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorietestcentercss3bordersbackgroundsborderradiusstyle001expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-style-001-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-style-001-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-style-001-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,10 +1,10 @@
</span><span class="cx"> layer at (0,0) size 800x600
</span><span class="cx">   RenderView at (0,0) size 800x600
</span><span class="cx"> layer at (0,0) size 800x310
</span><del>-  RenderBlock {HTML} at (0,0) size 800x311
-    RenderBody {BODY} at (8,16) size 784x287
</del><ins>+  RenderBlock {HTML} at (0,0) size 800x310
+    RenderBody {BODY} at (8,16) size 784x286
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x40
</span><span class="cx">         RenderText {#text} at (0,0) size 766x39
</span><span class="cx">           text run at (0,0) width 766: &quot;Test passes if there is a rounded border with purple dots on the top, green on the right side, blue on the bottom side, and&quot;
</span><span class="cx">           text run at (0,20) width 132: &quot;grey on the left side.&quot;
</span><del>-      RenderBlock {DIV} at (0,56) size 231x231 [border: (19.19px dotted #800080) (19.19px dotted #008000) (19.19px dotted #0000FF) (19.19px dotted #808080)]
</del><ins>+      RenderBlock {DIV} at (0,56) size 230x230 [border: (19px dotted #800080) (19px dotted #008000) (19px dotted #0000FF) (19px dotted #808080)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorietestcentercss3bordersbackgroundsborderradiusstyle002expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-style-002-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-style-002-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-style-002-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 800x600
</span><span class="cx">   RenderView at (0,0) size 800x600
</span><span class="cx"> layer at (0,0) size 800x290
</span><del>-  RenderBlock {HTML} at (0,0) size 800x291
-    RenderBody {BODY} at (8,16) size 784x267
</del><ins>+  RenderBlock {HTML} at (0,0) size 800x290
+    RenderBody {BODY} at (8,16) size 784x266
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x20
</span><span class="cx">         RenderText {#text} at (0,0) size 484x19
</span><span class="cx">           text run at (0,0) width 484: &quot;Test passes if there is a box below with dashed border and rounded corners.&quot;
</span><del>-      RenderBlock {DIV} at (0,36) size 231x231 [border: (19.19px dashed #000000)]
</del><ins>+      RenderBlock {DIV} at (0,36) size 230x230 [border: (19px dashed #000000)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorietestcentercss3bordersbackgroundsborderradiusstyle004expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 800x600
</span><span class="cx">   RenderView at (0,0) size 800x600
</span><span class="cx"> layer at (0,0) size 800x290
</span><del>-  RenderBlock {HTML} at (0,0) size 800x291
-    RenderBody {BODY} at (8,16) size 784x267
</del><ins>+  RenderBlock {HTML} at (0,0) size 800x290
+    RenderBody {BODY} at (8,16) size 784x266
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x20
</span><span class="cx">         RenderText {#text} at (0,0) size 470x19
</span><span class="cx">           text run at (0,0) width 470: &quot;Test passes if there is a box below with solid border and rounded corners.&quot;
</span><del>-      RenderBlock {DIV} at (0,36) size 231x231 [border: (19.19px solid #000000)]
</del><ins>+      RenderBlock {DIV} at (0,36) size 230x230 [border: (19px solid #000000)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorietestcentercss3bordersbackgroundsborderradiuswiththreevalues001expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,10 +1,10 @@
</span><span class="cx"> layer at (0,0) size 800x600
</span><span class="cx">   RenderView at (0,0) size 800x600
</span><span class="cx"> layer at (0,0) size 800x290
</span><del>-  RenderBlock {HTML} at (0,0) size 800x291
-    RenderBody {BODY} at (8,16) size 784x267
</del><ins>+  RenderBlock {HTML} at (0,0) size 800x290
+    RenderBody {BODY} at (8,16) size 784x266
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x20
</span><span class="cx">         RenderText {#text} at (0,0) size 521x19
</span><span class="cx">           text run at (0,0) width 521: &quot;Test passes if the box has rounded corners and there is no red visible on the page.&quot;
</span><del>-      RenderBlock {DIV} at (0,36) size 231x231 [border: (19.19px solid #FF0000)]
-      RenderBlock {DIV} at (0,35) size 231x232 [border: (19.19px solid #008000)]
</del><ins>+      RenderBlock {DIV} at (0,36) size 230x230 [border: (19px solid #FF0000)]
+      RenderBlock {DIV} at (0,35) size 230x231 [border: (19px solid #008000)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorietestcentercss3bordersbackgroundsborderradiuswithtwovalues001expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,10 +1,10 @@
</span><span class="cx"> layer at (0,0) size 800x600
</span><span class="cx">   RenderView at (0,0) size 800x600
</span><span class="cx"> layer at (0,0) size 800x290
</span><del>-  RenderBlock {HTML} at (0,0) size 800x291
-    RenderBody {BODY} at (8,16) size 784x267
</del><ins>+  RenderBlock {HTML} at (0,0) size 800x290
+    RenderBody {BODY} at (8,16) size 784x266
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x20
</span><span class="cx">         RenderText {#text} at (0,0) size 521x19
</span><span class="cx">           text run at (0,0) width 521: &quot;Test passes if the box has rounded corners and there is no red visible on the page.&quot;
</span><del>-      RenderBlock {DIV} at (0,36) size 231x231 [border: (19.19px solid #FF0000)]
-      RenderBlock {DIV} at (0,35) size 231x232 [border: (19.19px solid #008000)]
</del><ins>+      RenderBlock {DIV} at (0,36) size 230x230 [border: (19px solid #FF0000)]
+      RenderBlock {DIV} at (0,35) size 230x231 [border: (19px solid #008000)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformiossimulatorietestcentercss3bordersbackgroundsbordertopleftradiusvalues003expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,17 +1,17 @@
</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 800x365
-  RenderBlock {HTML} at (0,0) size 800x365
-    RenderBody {BODY} at (8,16) size 784x341
</del><ins>+layer at (0,0) size 800x364
+  RenderBlock {HTML} at (0,0) size 800x364
+    RenderBody {BODY} at (8,16) size 784x340
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x20
</span><span class="cx">         RenderText {#text} at (0,0) size 268x19
</span><span class="cx">           text run at (0,0) width 268: &quot;Test passes if the four boxes are identical.&quot;
</span><del>-      RenderTable {TABLE} at (0,36) size 319x305
-        RenderTableSection {TBODY} at (0,0) size 319x305
-          RenderTableRow {TR} at (0,2) size 319x301
-            RenderTableCell {TD} at (2,2) size 157x301 [r=0 c=0 rs=1 cs=1]
-              RenderBlock {DIV} at (11,11) size 135x135 [border: (19.19px solid #000000)]
-              RenderBlock {DIV} at (11,155) size 135x135 [border: (19.19px solid #000000)]
-            RenderTableCell {TD} at (160,2) size 157x301 [r=0 c=1 rs=1 cs=1]
-              RenderBlock {DIV} at (11,11) size 135x135 [border: (19.19px solid #000000)]
-              RenderBlock {DIV} at (11,155) size 135x135 [border: (19.19px solid #000000)]
</del><ins>+      RenderTable {TABLE} at (0,36) size 318x304
+        RenderTableSection {TBODY} at (0,0) size 318x304
+          RenderTableRow {TR} at (0,2) size 318x300
+            RenderTableCell {TD} at (2,2) size 156x300 [r=0 c=0 rs=1 cs=1]
+              RenderBlock {DIV} at (11,11) size 134x134 [border: (19px solid #000000)]
+              RenderBlock {DIV} at (11,155) size 134x134 [border: (19px solid #000000)]
+            RenderTableCell {TD} at (160,2) size 156x300 [r=0 c=1 rs=1 cs=1]
+              RenderBlock {DIV} at (11,11) size 134x134 [border: (19px solid #000000)]
+              RenderBlock {DIV} at (11,155) size 134x134 [border: (19px solid #000000)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmaccss1unitslength_unitsexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/css1/units/length_units-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/css1/units/length_units-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/css1/units/length_units-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -56,45 +56,45 @@
</span><span class="cx">       RenderBlock {P} at (48,554) size 721x18
</span><span class="cx">         RenderText {#text} at (0,0) size 603x18
</span><span class="cx">           text run at (0,0) width 603: &quot;This paragraph should have a left margin of 3 picas (the plus sign should make no difference).&quot;
</span><del>-      RenderBlock {P} at (0,612) size 769x230 [bgcolor=#00FFFF] [border: none (17.94px solid #800080)]
-        RenderText {#text} at (17,0) size 310x46
-          text run at (17,0) width 310: &quot;This element has a &quot;
</del><ins>+      RenderBlock {P} at (0,612) size 769x230 [bgcolor=#00FFFF] [border: none (17px solid #800080)]
+        RenderText {#text} at (17,0) size 309x46
+          text run at (17,0) width 309: &quot;This element has a &quot;
</ins><span class="cx">         RenderInline {CODE} at (0,0) size 217x46
</span><del>-          RenderText {#text} at (326,0) size 217x46
-            text run at (326,0) width 217: &quot;font-size&quot;
-        RenderText {#text} at (542,0) size 55x46
-          text run at (542,0) width 55: &quot; of &quot;
</del><ins>+          RenderText {#text} at (325,0) size 217x46
+            text run at (325,0) width 217: &quot;font-size&quot;
+        RenderText {#text} at (541,0) size 55x46
+          text run at (541,0) width 55: &quot; of &quot;
</ins><span class="cx">         RenderInline {CODE} at (0,0) size 97x46
</span><del>-          RenderText {#text} at (596,0) size 97x46
-            text run at (596,0) width 97: &quot;40px&quot;
-        RenderText {#text} at (692,0) size 743x92
-          text run at (692,0) width 68: &quot; and&quot;
-          text run at (17,46) width 29: &quot;a &quot;
</del><ins>+          RenderText {#text} at (595,0) size 97x46
+            text run at (595,0) width 97: &quot;40px&quot;
+        RenderText {#text} at (691,0) size 742x92
+          text run at (691,0) width 68: &quot; and&quot;
+          text run at (17,46) width 28: &quot;a &quot;
</ins><span class="cx">         RenderInline {CODE} at (0,0) size 265x46
</span><del>-          RenderText {#text} at (45,46) size 265x46
-            text run at (45,46) width 265: &quot;border-left&quot;
-        RenderText {#text} at (309,46) size 55x46
-          text run at (309,46) width 55: &quot; of &quot;
</del><ins>+          RenderText {#text} at (44,46) size 265x46
+            text run at (44,46) width 265: &quot;border-left&quot;
+        RenderText {#text} at (308,46) size 55x46
+          text run at (308,46) width 55: &quot; of &quot;
</ins><span class="cx">         RenderInline {CODE} at (0,0) size 385x46
</span><del>-          RenderText {#text} at (363,46) size 385x46
-            text run at (363,46) width 385: &quot;1ex solid purple&quot;
-        RenderText {#text} at (747,46) size 741x184
-          text run at (747,46) width 11: &quot;.&quot;
</del><ins>+          RenderText {#text} at (362,46) size 385x46
+            text run at (362,46) width 385: &quot;1ex solid purple&quot;
+        RenderText {#text} at (746,46) size 740x184
+          text run at (746,46) width 11: &quot;.&quot;
</ins><span class="cx">           text run at (17,92) width 673: &quot;This should make the left border the same&quot;
</span><span class="cx">           text run at (17,138) width 710: &quot;number of pixels as the lower-case 'x' in this&quot;
</span><del>-          text run at (17,184) width 611: &quot;element's font, as well as solid purple.&quot;
</del><ins>+          text run at (17,184) width 610: &quot;element's font, as well as solid purple.&quot;
</ins><span class="cx">       RenderTable {TABLE} at (0,882) size 769x694 [border: (1px outset #808080)]
</span><span class="cx">         RenderTableSection {TBODY} at (1,1) size 767x692
</span><span class="cx">           RenderTableRow {TR} at (0,0) size 767x26
</span><del>-            RenderTableCell {TD} at (0,0) size 768x26 [bgcolor=#C0C0C0] [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=2]
</del><ins>+            RenderTableCell {TD} at (0,0) size 767x26 [bgcolor=#C0C0C0] [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=2]
</ins><span class="cx">               RenderInline {STRONG} at (0,0) size 161x18
</span><span class="cx">                 RenderText {#text} at (4,4) size 161x18
</span><span class="cx">                   text run at (4,4) width 161: &quot;TABLE Testing Section&quot;
</span><span class="cx">           RenderTableRow {TR} at (0,26) size 767x666
</span><del>-            RenderTableCell {TD} at (0,346) size 13x26 [bgcolor=#C0C0C0] [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1]
</del><ins>+            RenderTableCell {TD} at (0,346) size 12x26 [bgcolor=#C0C0C0] [border: (1px inset #808080)] [r=1 c=0 rs=1 cs=1]
</ins><span class="cx">               RenderText {#text} at (4,4) size 4x18
</span><span class="cx">                 text run at (4,4) width 4: &quot; &quot;
</span><del>-            RenderTableCell {TD} at (12,26) size 756x666 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1]
</del><ins>+            RenderTableCell {TD} at (12,26) size 755x666 [border: (1px inset #808080)] [r=1 c=1 rs=1 cs=1]
</ins><span class="cx">               RenderBlock {P} at (4,4) size 747x36
</span><span class="cx">                 RenderText {#text} at (0,0) size 737x36
</span><span class="cx">                   text run at (0,0) width 737: &quot;This paragraph has no left margin. The following paragraphs have all been given a left margin and their left (outer)&quot;
</span><span class="lines">@@ -131,31 +131,31 @@
</span><span class="cx">               RenderBlock {P} at (52,328) size 699x18
</span><span class="cx">                 RenderText {#text} at (0,0) size 603x18
</span><span class="cx">                   text run at (0,0) width 603: &quot;This paragraph should have a left margin of 3 picas (the plus sign should make no difference).&quot;
</span><del>-              RenderBlock {P} at (4,386) size 747x276 [bgcolor=#00FFFF] [border: none (17.94px solid #800080)]
-                RenderText {#text} at (17,0) size 310x46
-                  text run at (17,0) width 310: &quot;This element has a &quot;
</del><ins>+              RenderBlock {P} at (4,386) size 747x276 [bgcolor=#00FFFF] [border: none (17px solid #800080)]
+                RenderText {#text} at (17,0) size 309x46
+                  text run at (17,0) width 309: &quot;This element has a &quot;
</ins><span class="cx">                 RenderInline {CODE} at (0,0) size 217x46
</span><del>-                  RenderText {#text} at (326,0) size 217x46
-                    text run at (326,0) width 217: &quot;font-size&quot;
-                RenderText {#text} at (542,0) size 55x46
-                  text run at (542,0) width 55: &quot; of &quot;
</del><ins>+                  RenderText {#text} at (325,0) size 217x46
+                    text run at (325,0) width 217: &quot;font-size&quot;
+                RenderText {#text} at (541,0) size 55x46
+                  text run at (541,0) width 55: &quot; of &quot;
</ins><span class="cx">                 RenderInline {CODE} at (0,0) size 97x46
</span><del>-                  RenderText {#text} at (596,0) size 97x46
-                    text run at (596,0) width 97: &quot;40px&quot;
-                RenderText {#text} at (17,46) size 97x46
-                  text run at (17,46) width 97: &quot;and a &quot;
</del><ins>+                  RenderText {#text} at (595,0) size 97x46
+                    text run at (595,0) width 97: &quot;40px&quot;
+                RenderText {#text} at (17,46) size 96x46
+                  text run at (17,46) width 96: &quot;and a &quot;
</ins><span class="cx">                 RenderInline {CODE} at (0,0) size 265x46
</span><del>-                  RenderText {#text} at (113,46) size 265x46
-                    text run at (113,46) width 265: &quot;border-left&quot;
-                RenderText {#text} at (377,46) size 54x46
-                  text run at (377,46) width 54: &quot; of &quot;
-                RenderInline {CODE} at (0,0) size 630x92
-                  RenderText {#text} at (430,46) size 630x92
-                    text run at (430,46) width 217: &quot;1ex solid&quot;
</del><ins>+                  RenderText {#text} at (112,46) size 265x46
+                    text run at (112,46) width 265: &quot;border-left&quot;
+                RenderText {#text} at (376,46) size 54x46
+                  text run at (376,46) width 54: &quot; of &quot;
+                RenderInline {CODE} at (0,0) size 629x92
+                  RenderText {#text} at (429,46) size 629x92
+                    text run at (429,46) width 217: &quot;1ex solid&quot;
</ins><span class="cx">                     text run at (17,92) width 145: &quot;purple&quot;
</span><del>-                RenderText {#text} at (161,92) size 708x184
</del><ins>+                RenderText {#text} at (161,92) size 707x184
</ins><span class="cx">                   text run at (161,92) width 21: &quot;. &quot;
</span><del>-                  text run at (181,92) width 522: &quot;This should make the left border&quot;
-                  text run at (17,138) width 708: &quot;the same number of pixels as the lower-case&quot;
-                  text run at (17,184) width 642: &quot;'x' in this element's font, as well as solid&quot;
-                  text run at (17,230) width 114: &quot;purple.&quot;
</del><ins>+                  text run at (181,92) width 521: &quot;This should make the left border&quot;
+                  text run at (17,138) width 707: &quot;the same number of pixels as the lower-case&quot;
+                  text run at (17,184) width 641: &quot;'x' in this element's font, as well as solid&quot;
+                  text run at (17,230) width 113: &quot;purple.&quot;
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacfastcssbidioverrideinanonymousblockexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/fast/css/bidi-override-in-anonymous-block-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/fast/css/bidi-override-in-anonymous-block-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/fast/css/bidi-override-in-anonymous-block-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,161 +1,161 @@
</span><del>-layer at (0,0) size 785x1225
</del><ins>+layer at (0,0) size 785x1217
</ins><span class="cx">   RenderView at (0,0) size 785x600
</span><del>-layer at (0,0) size 785x1225
-  RenderBlock {HTML} at (0,0) size 785x1226
-    RenderBody {BODY} at (8,16) size 769x1202
</del><ins>+layer at (0,0) size 785x1217
+  RenderBlock {HTML} at (0,0) size 785x1218
+    RenderBody {BODY} at (8,16) size 769x1194
</ins><span class="cx">       RenderBlock {P} at (0,0) size 769x18
</span><span class="cx">         RenderText {#text} at (0,0) size 164x18
</span><span class="cx">           text run at (0,0) width 164: &quot;div, span, nested div/span&quot;
</span><span class="cx">       RenderBlock {P} at (0,34) size 769x18
</span><span class="cx">         RenderText {#text} at (0,0) size 66x18
</span><span class="cx">           text run at (0,0) width 66: &quot;Single div&quot;
</span><del>-      RenderBlock {DIV} at (1,68) size 767x21 [border: (1.42px solid #000000)]
-        RenderText {#text} at (742,1) size 23x18
-          text run at (742,1) width 23 RTL override: &quot;abc&quot;
-      RenderBlock {P} at (0,104) size 769x19
</del><ins>+      RenderBlock {DIV} at (1,68) size 767x20 [border: (1px solid #000000)]
+        RenderText {#text} at (742,1) size 24x18
+          text run at (742,1) width 24 RTL override: &quot;abc&quot;
+      RenderBlock {P} at (0,104) size 769x18
</ins><span class="cx">         RenderText {#text} at (0,0) size 419x18
</span><span class="cx">           text run at (0,0) width 419: &quot;The following 2 lines should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock {DIV} at (1,138) size 767x40 [border: (1.42px solid #000000)]
-        RenderBlock (anonymous) at (1,1) size 764x19
-          RenderText {#text} at (741,0) size 23x18
-            text run at (741,0) width 23 RTL override: &quot;abc&quot;
-        RenderBlock {DIV} at (1,19) size 764x19
-          RenderText {#text} at (741,0) size 23x18
-            text run at (741,0) width 23: &quot;cba&quot;
-      RenderBlock {P} at (0,193) size 769x19
</del><ins>+      RenderBlock {DIV} at (1,138) size 767x38 [border: (1px solid #000000)]
+        RenderBlock (anonymous) at (1,1) size 765x18
+          RenderText {#text} at (741,0) size 24x18
+            text run at (741,0) width 24 RTL override: &quot;abc&quot;
+        RenderBlock {DIV} at (1,19) size 765x18
+          RenderText {#text} at (741,0) size 24x18
+            text run at (741,0) width 24: &quot;cba&quot;
+      RenderBlock {P} at (0,192) size 769x18
</ins><span class="cx">         RenderText {#text} at (0,0) size 426x18
</span><span class="cx">           text run at (0,0) width 426: &quot;The following 2 textes should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock {DIV} at (1,227) size 767x22 [border: (1.42px solid #000000)]
-        RenderText {#text} at (738,1) size 27x18
-          text run at (738,1) width 27 RTL override: &quot;abc &quot;
</del><ins>+      RenderBlock {DIV} at (1,226) size 767x20 [border: (1px solid #000000)]
+        RenderText {#text} at (738,1) size 28x18
+          text run at (738,1) width 28 RTL override: &quot;abc &quot;
</ins><span class="cx">         RenderInline {SPAN} at (0,0) size 23x18
</span><span class="cx">           RenderText {#text} at (716,1) size 23x18
</span><span class="cx">             text run at (716,1) width 23 RTL override: &quot;abc&quot;
</span><del>-      RenderBlock {P} at (0,264) size 769x19
</del><ins>+      RenderBlock {P} at (0,262) size 769x18
</ins><span class="cx">         RenderText {#text} at (0,0) size 419x18
</span><span class="cx">           text run at (0,0) width 419: &quot;The following 2 lines should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock {DIV} at (1,298) size 767x40 [border: (1.42px solid #000000)]
-        RenderBlock {DIV} at (1,1) size 764x19
-          RenderText {#text} at (741,0) size 23x18
-            text run at (741,0) width 23: &quot;cba&quot;
-        RenderBlock (anonymous) at (1,19) size 764x19
-          RenderText {#text} at (741,0) size 23x18
-            text run at (741,0) width 23 RTL override: &quot;abc&quot;
-      RenderBlock {P} at (0,353) size 769x19
</del><ins>+      RenderBlock {DIV} at (1,296) size 767x38 [border: (1px solid #000000)]
+        RenderBlock {DIV} at (1,1) size 765x18
+          RenderText {#text} at (741,0) size 24x18
+            text run at (741,0) width 24: &quot;cba&quot;
+        RenderBlock (anonymous) at (1,19) size 765x18
+          RenderText {#text} at (741,0) size 24x18
+            text run at (741,0) width 24 RTL override: &quot;abc&quot;
+      RenderBlock {P} at (0,350) size 769x18
</ins><span class="cx">         RenderText {#text} at (0,0) size 426x18
</span><span class="cx">           text run at (0,0) width 426: &quot;The following 2 textes should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock {DIV} at (1,387) size 767x22 [border: (1.42px solid #000000)]
-        RenderInline {SPAN} at (0,0) size 27x18
-          RenderText {#text} at (738,1) size 27x18
-            text run at (738,1) width 27 RTL override: &quot;abc &quot;
</del><ins>+      RenderBlock {DIV} at (1,384) size 767x20 [border: (1px solid #000000)]
+        RenderInline {SPAN} at (0,0) size 28x18
+          RenderText {#text} at (738,1) size 28x18
+            text run at (738,1) width 28 RTL override: &quot;abc &quot;
</ins><span class="cx">         RenderText {#text} at (716,1) size 23x18
</span><span class="cx">           text run at (716,1) width 23 RTL override: &quot;abc&quot;
</span><del>-      RenderBlock {P} at (0,424) size 769x19
</del><ins>+      RenderBlock {P} at (0,420) size 769x18
</ins><span class="cx">         RenderText {#text} at (0,0) size 75x18
</span><span class="cx">           text run at (0,0) width 75: &quot;Single span&quot;
</span><del>-      RenderBlock (anonymous) at (0,458) size 769x19
-        RenderInline {SPAN} at (0,0) size 26x22 [border: (1.42px solid #000000)]
-          RenderText {#text} at (2,0) size 24x18
-            text run at (2,0) width 24 RTL override: &quot;abc&quot;
</del><ins>+      RenderBlock (anonymous) at (0,454) size 769x18
+        RenderInline {SPAN} at (0,0) size 25x20 [border: (1px solid #000000)]
+          RenderText {#text} at (2,0) size 23x18
+            text run at (2,0) width 23 RTL override: &quot;abc&quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {P} at (0,492) size 769x19
</del><ins>+      RenderBlock {P} at (0,488) size 769x18
</ins><span class="cx">         RenderText {#text} at (0,0) size 426x18
</span><span class="cx">           text run at (0,0) width 426: &quot;The following 2 textes should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock (anonymous) at (0,526) size 769x19
-        RenderInline {SPAN} at (0,0) size 52x22 [border: (1.42px solid #000000)]
-          RenderText {#text} at (25,0) size 27x18
-            text run at (25,0) width 27 RTL override: &quot;abc &quot;
-          RenderInline {SPAN} at (0,0) size 24x18
-            RenderText {#text} at (2,0) size 24x18
-              text run at (2,0) width 24 RTL override: &quot;abc&quot;
</del><ins>+      RenderBlock (anonymous) at (0,522) size 769x18
+        RenderInline {SPAN} at (0,0) size 51x20 [border: (1px solid #000000)]
+          RenderText {#text} at (24,0) size 27x18
+            text run at (24,0) width 27 RTL override: &quot;abc &quot;
+          RenderInline {SPAN} at (0,0) size 23x18
+            RenderText {#text} at (2,0) size 23x18
+              text run at (2,0) width 23 RTL override: &quot;abc&quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {P} at (0,560) size 769x19
</del><ins>+      RenderBlock {P} at (0,556) size 769x18
</ins><span class="cx">         RenderText {#text} at (0,0) size 426x18
</span><span class="cx">           text run at (0,0) width 426: &quot;The following 2 textes should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock (anonymous) at (0,594) size 769x19
-        RenderInline {SPAN} at (0,0) size 52x22 [border: (1.42px solid #000000)]
</del><ins>+      RenderBlock (anonymous) at (0,590) size 769x18
+        RenderInline {SPAN} at (0,0) size 51x20 [border: (1px solid #000000)]
</ins><span class="cx">           RenderInline {SPAN} at (0,0) size 27x18
</span><del>-            RenderText {#text} at (25,0) size 27x18
-              text run at (25,0) width 27 RTL override: &quot;abc &quot;
-          RenderText {#text} at (2,0) size 24x18
-            text run at (2,0) width 24 RTL override: &quot;abc&quot;
</del><ins>+            RenderText {#text} at (24,0) size 27x18
+              text run at (24,0) width 27 RTL override: &quot;abc &quot;
+          RenderText {#text} at (2,0) size 23x18
+            text run at (2,0) width 23 RTL override: &quot;abc&quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {P} at (0,628) size 769x19
</del><ins>+      RenderBlock {P} at (0,624) size 769x18
</ins><span class="cx">         RenderText {#text} at (0,0) size 426x18
</span><span class="cx">           text run at (0,0) width 426: &quot;The following 2 textes should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock (anonymous) at (0,662) size 769x19
-        RenderInline {SPAN} at (0,0) size 24x22 [border: (1.42px solid #000000)]
</del><ins>+      RenderBlock (anonymous) at (0,658) size 769x18
+        RenderInline {SPAN} at (0,0) size 24x20 [border: (1px solid #000000)]
</ins><span class="cx">           RenderText {#text} at (0,0) size 23x18
</span><span class="cx">             text run at (0,0) width 23 RTL override: &quot;abc&quot;
</span><del>-      RenderBlock (anonymous) at (0,680) size 769x19
</del><ins>+      RenderBlock (anonymous) at (0,676) size 769x18
</ins><span class="cx">         RenderBlock {DIV} at (0,0) size 769x18
</span><span class="cx">           RenderText {#text} at (746,0) size 23x18
</span><span class="cx">             text run at (746,0) width 23: &quot;cba&quot;
</span><del>-      RenderBlock (anonymous) at (0,698) size 769x19
-        RenderInline {SPAN} at (0,0) size 2x22 [border: (1.42px solid #000000)]
</del><ins>+      RenderBlock (anonymous) at (0,694) size 769x18
+        RenderInline {SPAN} at (0,0) size 2x20 [border: (1px solid #000000)]
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {P} at (0,732) size 769x19
</del><ins>+      RenderBlock {P} at (0,728) size 769x18
</ins><span class="cx">         RenderText {#text} at (0,0) size 426x18
</span><span class="cx">           text run at (0,0) width 426: &quot;The following 2 textes should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderBlock (anonymous) at (0,766) size 769x19
-        RenderInline {SPAN} at (0,0) size 2x22 [border: (1.42px solid #000000)]
-      RenderBlock (anonymous) at (0,784) size 769x19
</del><ins>+      RenderBlock (anonymous) at (0,762) size 769x18
+        RenderInline {SPAN} at (0,0) size 1x20 [border: (1px solid #000000)]
+      RenderBlock (anonymous) at (0,780) size 769x18
</ins><span class="cx">         RenderBlock {DIV} at (0,0) size 769x18
</span><span class="cx">           RenderText {#text} at (746,0) size 23x18
</span><span class="cx">             text run at (746,0) width 23: &quot;cba&quot;
</span><del>-      RenderBlock (anonymous) at (0,802) size 769x19
-        RenderInline {SPAN} at (0,0) size 25x22 [border: (1.42px solid #000000)]
-          RenderText {#text} at (2,0) size 24x18
-            text run at (2,0) width 24 RTL override: &quot;abc&quot;
</del><ins>+      RenderBlock (anonymous) at (0,798) size 769x18
+        RenderInline {SPAN} at (0,0) size 24x20 [border: (1px solid #000000)]
+          RenderText {#text} at (2,0) size 23x18
+            text run at (2,0) width 23 RTL override: &quot;abc&quot;
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {P} at (0,836) size 769x19
</del><ins>+      RenderBlock {P} at (0,832) size 769x18
</ins><span class="cx">         RenderText {#text} at (0,0) size 30x18
</span><span class="cx">           text run at (0,0) width 30: &quot;ruby&quot;
</span><del>-      RenderBlock {DIV} at (0,870) size 769x32 [border: (1.42px solid #000000)]
-        RenderRuby (inline) {RUBY} at (0,0) size 23x19
-          RenderRubyRun (anonymous) at (166,11) size 23x19
</del><ins>+      RenderBlock {DIV} at (0,866) size 769x30 [border: (1px solid #000000)]
+        RenderRuby (inline) {RUBY} at (0,0) size 23x18
+          RenderRubyRun (anonymous) at (166,11) size 23x18
</ins><span class="cx">             RenderRubyText {RT} at (0,-10) size 23x10
</span><span class="cx">               RenderText {#text} at (5,0) size 12x10
</span><span class="cx">                 text run at (5,0) width 12: &quot;def&quot;
</span><span class="cx">             RenderRubyBase (anonymous) at (0,0) size 23x18
</span><span class="cx">               RenderText {#text} at (0,0) size 23x18
</span><span class="cx">                 text run at (0,0) width 23 RTL override: &quot;abc&quot;
</span><del>-        RenderText {#text} at (161,11) size 4x19
-          text run at (161,11) width 4 RTL: &quot; &quot;
-        RenderRuby (inline) {RUBY} at (0,0) size 23x19
-          RenderRubyRun (anonymous) at (137,11) size 23x19
</del><ins>+        RenderText {#text} at (160,11) size 5x18
+          text run at (160,11) width 5 RTL: &quot; &quot;
+        RenderRuby (inline) {RUBY} at (0,0) size 24x18
+          RenderRubyRun (anonymous) at (136,11) size 24x18
</ins><span class="cx">             RenderRubyText {RT} at (0,-10) size 23x10
</span><span class="cx">               RenderText {#text} at (5,0) size 12x10
</span><span class="cx">                 text run at (5,0) width 12 RTL override: &quot;def&quot;
</span><span class="cx">             RenderRubyBase (anonymous) at (0,0) size 23x18
</span><span class="cx">               RenderText {#text} at (0,0) size 23x18
</span><span class="cx">                 text run at (0,0) width 23 RTL override: &quot;abc&quot;
</span><del>-        RenderText {#text} at (131,11) size 5x19
</del><ins>+        RenderText {#text} at (131,11) size 5x18
</ins><span class="cx">           text run at (131,11) width 5 RTL: &quot; &quot;
</span><del>-        RenderRuby (inline) {RUBY} at (0,0) size 23x19
-          RenderRubyRun (anonymous) at (108,11) size 23x19
</del><ins>+        RenderRuby (inline) {RUBY} at (0,0) size 24x18
+          RenderRubyRun (anonymous) at (107,11) size 24x18
</ins><span class="cx">             RenderRubyBase (anonymous) at (0,0) size 23x18
</span><span class="cx">               RenderText {#text} at (0,0) size 23x18
</span><span class="cx">                 text run at (0,0) width 23 RTL override: &quot;abc&quot;
</span><del>-        RenderText {#text} at (102,11) size 5x19
</del><ins>+        RenderText {#text} at (102,11) size 5x18
</ins><span class="cx">           text run at (102,11) width 5 RTL: &quot; &quot;
</span><del>-        RenderRuby (inline) {RUBY} at (0,0) size 13x19
</del><ins>+        RenderRuby (inline) {RUBY} at (0,0) size 13x18
</ins><span class="cx">           RenderRubyRun (anonymous) at (89,27) size 13x0
</span><span class="cx">             RenderRubyText {RT} at (0,-10) size 12x10
</span><span class="cx">               RenderText {#text} at (0,0) size 13x10
</span><span class="cx">                 text run at (0,0) width 12: &quot;def&quot;
</span><del>-        RenderText {#text} at (84,11) size 5x19
</del><ins>+        RenderText {#text} at (84,11) size 5x18
</ins><span class="cx">           text run at (84,11) width 5 RTL: &quot; &quot;
</span><del>-        RenderRuby (inline) {RUBY} at (0,0) size 24x19
-          RenderRubyRun (anonymous) at (60,11) size 24x19
</del><ins>+        RenderRuby (inline) {RUBY} at (0,0) size 23x18
+          RenderRubyRun (anonymous) at (60,11) size 23x18
</ins><span class="cx">             RenderRubyBase (anonymous) at (0,0) size 23x18
</span><span class="cx">               RenderInline {RB} at (0,0) size 23x18
</span><span class="cx">                 RenderText {#text} at (0,0) size 23x18
</span><span class="cx">                   text run at (0,0) width 23 RTL override: &quot;abc&quot;
</span><del>-        RenderText {#text} at (55,11) size 5x19
</del><ins>+        RenderText {#text} at (55,11) size 5x18
</ins><span class="cx">           text run at (55,11) width 5 RTL: &quot; &quot;
</span><del>-        RenderRuby (inline) {RUBY} at (0,0) size 24x19
-          RenderRubyRun (anonymous) at (31,11) size 24x19
</del><ins>+        RenderRuby (inline) {RUBY} at (0,0) size 23x18
+          RenderRubyRun (anonymous) at (31,11) size 23x18
</ins><span class="cx">             RenderRubyText {RT} at (0,-10) size 23x10
</span><span class="cx">               RenderText {#text} at (5,0) size 12x10
</span><span class="cx">                 text run at (5,0) width 12: &quot;def&quot;
</span><span class="lines">@@ -163,10 +163,10 @@
</span><span class="cx">               RenderInline {RB} at (0,0) size 23x18
</span><span class="cx">                 RenderText {#text} at (0,0) size 23x18
</span><span class="cx">                   text run at (0,0) width 23 RTL override: &quot;abc&quot;
</span><del>-        RenderText {#text} at (26,11) size 5x19
</del><ins>+        RenderText {#text} at (26,11) size 5x18
</ins><span class="cx">           text run at (26,11) width 5 RTL: &quot; &quot;
</span><del>-        RenderRuby (inline) {RUBY} at (0,0) size 24x19
-          RenderRubyRun (anonymous) at (2,11) size 24x19
</del><ins>+        RenderRuby (inline) {RUBY} at (0,0) size 23x18
+          RenderRubyRun (anonymous) at (2,11) size 23x18
</ins><span class="cx">             RenderRubyText {RT} at (0,-10) size 23x10
</span><span class="cx">               RenderText {#text} at (5,0) size 12x10
</span><span class="cx">                 text run at (5,0) width 12: &quot;def&quot;
</span><span class="lines">@@ -175,52 +175,52 @@
</span><span class="cx">                 RenderText {#text} at (0,0) size 23x18
</span><span class="cx">                   text run at (0,0) width 23 RTL override: &quot;abc&quot;
</span><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-      RenderBlock {P} at (0,917) size 769x19
</del><ins>+      RenderBlock {P} at (0,912) size 769x18
</ins><span class="cx">         RenderText {#text} at (0,0) size 426x18
</span><span class="cx">           text run at (0,0) width 426: &quot;The following 2 tables should be identical, ignorning whitespaces:&quot;
</span><del>-      RenderTable {TABLE} at (1,951) size 85x67 [border: (1.42px solid #808080)]
</del><ins>+      RenderTable {TABLE} at (1,946) size 85x66 [border: (1px solid #808080)]
</ins><span class="cx">         RenderBlock {CAPTION} at (0,0) size 85x18
</span><span class="cx">           RenderText {#text} at (0,0) size 85x18
</span><span class="cx">             text run at (0,0) width 85: &quot;NormalTable&quot;
</span><del>-        RenderTableSection {TBODY} at (1,19) size 82x47
-          RenderTableRow {TR} at (0,2) size 82x20
-            RenderTableCell {TD} at (43,2) size 37x20 [r=0 c=0 rs=1 cs=1]
</del><ins>+        RenderTableSection {TBODY} at (1,19) size 83x46
+          RenderTableRow {TR} at (0,2) size 83x20
+            RenderTableCell {TD} at (43,2) size 38x20 [r=0 c=0 rs=1 cs=1]
</ins><span class="cx">               RenderText {#text} at (13,1) size 23x18
</span><span class="cx">                 text run at (13,1) width 23: &quot;abc&quot;
</span><span class="cx">             RenderTableCell {TD} at (2,2) size 40x20 [r=0 c=1 rs=1 cs=1]
</span><del>-              RenderText {#text} at (17,1) size 22x18
-                text run at (17,1) width 22: &quot;def&quot;
-          RenderTableRow {TR} at (0,24) size 82x20
-            RenderTableCell {TD} at (43,24) size 37x20 [r=1 c=0 rs=1 cs=1]
</del><ins>+              RenderText {#text} at (18,1) size 21x18
+                text run at (18,1) width 21: &quot;def&quot;
+          RenderTableRow {TR} at (0,24) size 83x20
+            RenderTableCell {TD} at (43,24) size 38x20 [r=1 c=0 rs=1 cs=1]
</ins><span class="cx">               RenderText {#text} at (18,1) size 18x18
</span><span class="cx">                 text run at (18,1) width 18: &quot;hij&quot;
</span><span class="cx">             RenderTableCell {TD} at (2,24) size 40x20 [r=1 c=1 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (14,1) size 25x18
</span><span class="cx">                 text run at (14,1) width 25: &quot;opq&quot;
</span><del>-      RenderTable {DIV} at (1,1019) size 145x58 [border: (1.42px solid #000000)]
</del><ins>+      RenderTable {DIV} at (1,1013) size 145x57 [border: (1px solid #000000)]
</ins><span class="cx">         RenderBlock {DIV} at (0,0) size 144x18
</span><span class="cx">           RenderText {#text} at (0,0) size 144x18
</span><span class="cx">             text run at (0,0) width 144: &quot;AnonymousTableRow&quot;
</span><del>-        RenderTableSection (anonymous) at (1,19) size 142x37
-          RenderTableRow {DIV} at (0,0) size 141x18
-            RenderTableCell {DIV} at (73,0) size 68x18 [r=0 c=0 rs=1 cs=1]
-              RenderText {#text} at (45,0) size 23x18
-                text run at (45,0) width 23: &quot;abc&quot;
</del><ins>+        RenderTableSection (anonymous) at (1,19) size 142x36
+          RenderTableRow {DIV} at (0,0) size 142x18
+            RenderTableCell {DIV} at (73,0) size 69x18 [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (45,0) size 24x18
+                text run at (45,0) width 24: &quot;abc&quot;
</ins><span class="cx">             RenderTableCell {DIV} at (0,0) size 74x18 [r=0 c=1 rs=1 cs=1]
</span><del>-              RenderText {#text} at (52,0) size 22x18
-                text run at (52,0) width 22: &quot;def&quot;
-          RenderTableRow {DIV} at (0,18) size 141x18
-            RenderTableCell {DIV} at (73,18) size 68x18 [r=1 c=0 rs=1 cs=1]
-              RenderText {#text} at (50,0) size 18x18
-                text run at (50,0) width 18: &quot;hij&quot;
</del><ins>+              RenderText {#text} at (53,0) size 21x18
+                text run at (53,0) width 21: &quot;def&quot;
+          RenderTableRow {DIV} at (0,18) size 142x18
+            RenderTableCell {DIV} at (73,18) size 69x18 [r=1 c=0 rs=1 cs=1]
+              RenderText {#text} at (51,0) size 18x18
+                text run at (51,0) width 18: &quot;hij&quot;
</ins><span class="cx">             RenderTableCell {DIV} at (0,18) size 74x18 [r=1 c=1 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (49,0) size 25x18
</span><span class="cx">                 text run at (49,0) width 25: &quot;opq&quot;
</span><del>-      RenderBlock {P} at (0,1092) size 769x19
</del><ins>+      RenderBlock {P} at (0,1085) size 769x19
</ins><span class="cx">         RenderText {#text} at (0,0) size 505x18
</span><span class="cx">           text run at (0,0) width 505: &quot;Anonymous TABLE, TABLE_ROW, TABLE_ROW_GROUP, TABLE_CELL&quot;
</span><del>-      RenderBlock {DIV} at (0,1126) size 769x76 [border: (1.42px solid #000000)]
-        RenderTable at (1,1) size 25x73
</del><ins>+      RenderBlock {DIV} at (0,1119) size 769x75 [border: (1px solid #000000)]
+        RenderTable at (1,1) size 24x72
</ins><span class="cx">           RenderTableSection (anonymous) at (0,18) size 24x36
</span><span class="cx">             RenderTableRow {DIV} at (0,0) size 24x18
</span><span class="cx">               RenderTableCell (anonymous) at (0,0) size 24x18 [r=0 c=0 rs=1 cs=1]
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacfastmulticolspananonymousstyleinheritanceexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,16 +1,16 @@
</span><del>-layer at (0,0) size 844x585
</del><ins>+layer at (0,0) size 843x585
</ins><span class="cx">   RenderView at (0,0) size 800x585
</span><del>-layer at (0,0) size 800x517
-  RenderBlock {HTML} at (0,0) size 800x517
-    RenderBody {BODY} at (8,17) size 784x483
-layer at (8,18) size 836x482
-  RenderBlock {DIV} at (0,0) size 836x482 [border: (5.50px solid #800000)]
-    RenderBlock {H2} at (5,27) size 826x32 [bgcolor=#EEEEEE]
</del><ins>+layer at (0,0) size 800x516
+  RenderBlock {HTML} at (0,0) size 800x516
+    RenderBody {BODY} at (8,17) size 784x482
+layer at (8,18) size 835x481
+  RenderBlock {DIV} at (0,0) size 835x481 [border: (5px solid #800000)]
+    RenderBlock {H2} at (5,26) size 825x32 [bgcolor=#EEEEEE]
</ins><span class="cx">       RenderText {#text} at (0,0) size 721x31
</span><span class="cx">         text run at (0,0) width 721: &quot;This is a spanning element at the beginning of the columns block.&quot;
</span><del>-    RenderMultiColumnSet at (5,80) size 826x397
-layer at (14,23) size 403x792 backgroundClip at (0,0) size 844x585 clip at (0,0) size 844x585
-  RenderMultiColumnFlowThread at (5,5) size 404x793
</del><ins>+    RenderMultiColumnSet at (5,79) size 825x397
+layer at (13,23) size 404x792 backgroundClip at (0,0) size 843x585 clip at (0,0) size 843x585
+  RenderMultiColumnFlowThread at (5,5) size 404x792
</ins><span class="cx">     RenderMultiColumnSpannerPlaceholder at (0,0) size 0x0
</span><span class="cx">     RenderBlock (anonymous) at (0,0) size 404x792
</span><span class="cx">       RenderText {#text} at (0,0) size 403x792
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacfastrepaintrepaintduringscrollwithzoomexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/fast/repaint/repaint-during-scroll-with-zoom-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/fast/repaint/repaint-during-scroll-with-zoom-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/fast/repaint/repaint-during-scroll-with-zoom-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -3,8 +3,8 @@
</span><span class="cx"> layer at (0,0) size 800x0
</span><span class="cx">   RenderBlock {HTML} at (0,0) size 800x0
</span><span class="cx">     RenderBody {BODY} at (0,0) size 800x0 [bgcolor=#C0C0C0]
</span><del>-layer at (0,63) size 255x255
-  RenderIFrame {IFRAME} at (0,62) size 255x256 [border: (2.50px inset #000000)]
</del><ins>+layer at (0,63) size 254x254
+  RenderIFrame {IFRAME} at (0,62) size 254x255 [border: (2px inset #000000)]
</ins><span class="cx">     layer at (0,0) size 2008x2016
</span><span class="cx">       RenderView at (0,0) size 235x235
</span><span class="cx">     layer at (0,0) size 235x2016
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacietestcentercss3bordersbackgroundsborderradiusinitialvalue001expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,10 +1,10 @@
</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 800x339
-  RenderBlock {HTML} at (0,0) size 800x339
-    RenderBody {BODY} at (8,16) size 784x313
</del><ins>+layer at (0,0) size 800x338
+  RenderBlock {HTML} at (0,0) size 800x338
+    RenderBody {BODY} at (8,16) size 784x312
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x18
</span><span class="cx">         RenderText {#text} at (0,0) size 265x18
</span><span class="cx">           text run at (0,0) width 265: &quot;Test passes if the two boxes are identical.&quot;
</span><del>-      RenderBlock {DIV} at (10,34) size 135x135 [border: (19.19px solid #000000)]
-      RenderBlock {DIV} at (10,178) size 135x135 [border: (19.19px solid #000000)]
</del><ins>+      RenderBlock {DIV} at (10,34) size 134x134 [border: (19px solid #000000)]
+      RenderBlock {DIV} at (10,178) size 134x134 [border: (19px solid #000000)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacietestcentercss3bordersbackgroundsborderradiusstyle001expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-001-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-001-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-001-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,10 +1,10 @@
</span><span class="cx"> layer at (0,0) size 800x600
</span><span class="cx">   RenderView at (0,0) size 800x600
</span><span class="cx"> layer at (0,0) size 800x306
</span><del>-  RenderBlock {HTML} at (0,0) size 800x307
-    RenderBody {BODY} at (8,16) size 784x283
</del><ins>+  RenderBlock {HTML} at (0,0) size 800x306
+    RenderBody {BODY} at (8,16) size 784x282
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x36
</span><span class="cx">         RenderText {#text} at (0,0) size 766x36
</span><span class="cx">           text run at (0,0) width 766: &quot;Test passes if there is a rounded border with purple dots on the top, green on the right side, blue on the bottom side, and&quot;
</span><span class="cx">           text run at (0,18) width 132: &quot;grey on the left side.&quot;
</span><del>-      RenderBlock {DIV} at (0,52) size 231x231 [border: (19.19px dotted #800080) (19.19px dotted #008000) (19.19px dotted #0000FF) (19.19px dotted #808080)]
</del><ins>+      RenderBlock {DIV} at (0,52) size 230x230 [border: (19px dotted #800080) (19px dotted #008000) (19px dotted #0000FF) (19px dotted #808080)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacietestcentercss3bordersbackgroundsborderradiusstyle002expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-002-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-002-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-002-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 800x600
</span><span class="cx">   RenderView at (0,0) size 800x600
</span><span class="cx"> layer at (0,0) size 800x288
</span><del>-  RenderBlock {HTML} at (0,0) size 800x289
-    RenderBody {BODY} at (8,16) size 784x265
</del><ins>+  RenderBlock {HTML} at (0,0) size 800x288
+    RenderBody {BODY} at (8,16) size 784x264
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x18
</span><span class="cx">         RenderText {#text} at (0,0) size 484x18
</span><span class="cx">           text run at (0,0) width 484: &quot;Test passes if there is a box below with dashed border and rounded corners.&quot;
</span><del>-      RenderBlock {DIV} at (0,34) size 231x231 [border: (19.19px dashed #000000)]
</del><ins>+      RenderBlock {DIV} at (0,34) size 230x230 [border: (19px dashed #000000)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacietestcentercss3bordersbackgroundsborderradiusstyle004expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,9 +1,9 @@
</span><span class="cx"> layer at (0,0) size 800x600
</span><span class="cx">   RenderView at (0,0) size 800x600
</span><span class="cx"> layer at (0,0) size 800x288
</span><del>-  RenderBlock {HTML} at (0,0) size 800x289
-    RenderBody {BODY} at (8,16) size 784x265
</del><ins>+  RenderBlock {HTML} at (0,0) size 800x288
+    RenderBody {BODY} at (8,16) size 784x264
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x18
</span><span class="cx">         RenderText {#text} at (0,0) size 470x18
</span><span class="cx">           text run at (0,0) width 470: &quot;Test passes if there is a box below with solid border and rounded corners.&quot;
</span><del>-      RenderBlock {DIV} at (0,34) size 231x231 [border: (19.19px solid #000000)]
</del><ins>+      RenderBlock {DIV} at (0,34) size 230x230 [border: (19px solid #000000)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacietestcentercss3bordersbackgroundsborderradiuswiththreevalues001expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,10 +1,10 @@
</span><span class="cx"> layer at (0,0) size 800x600
</span><span class="cx">   RenderView at (0,0) size 800x600
</span><span class="cx"> layer at (0,0) size 800x288
</span><del>-  RenderBlock {HTML} at (0,0) size 800x289
-    RenderBody {BODY} at (8,16) size 784x265
</del><ins>+  RenderBlock {HTML} at (0,0) size 800x288
+    RenderBody {BODY} at (8,16) size 784x264
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x18
</span><span class="cx">         RenderText {#text} at (0,0) size 521x18
</span><span class="cx">           text run at (0,0) width 521: &quot;Test passes if the box has rounded corners and there is no red visible on the page.&quot;
</span><del>-      RenderBlock {DIV} at (0,34) size 231x231 [border: (19.19px solid #FF0000)]
-      RenderBlock {DIV} at (0,33) size 231x232 [border: (19.19px solid #008000)]
</del><ins>+      RenderBlock {DIV} at (0,34) size 230x230 [border: (19px solid #FF0000)]
+      RenderBlock {DIV} at (0,33) size 230x231 [border: (19px solid #008000)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacietestcentercss3bordersbackgroundsborderradiuswithtwovalues001expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,10 +1,10 @@
</span><span class="cx"> layer at (0,0) size 800x600
</span><span class="cx">   RenderView at (0,0) size 800x600
</span><span class="cx"> layer at (0,0) size 800x288
</span><del>-  RenderBlock {HTML} at (0,0) size 800x289
-    RenderBody {BODY} at (8,16) size 784x265
</del><ins>+  RenderBlock {HTML} at (0,0) size 800x288
+    RenderBody {BODY} at (8,16) size 784x264
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x18
</span><span class="cx">         RenderText {#text} at (0,0) size 521x18
</span><span class="cx">           text run at (0,0) width 521: &quot;Test passes if the box has rounded corners and there is no red visible on the page.&quot;
</span><del>-      RenderBlock {DIV} at (0,34) size 231x231 [border: (19.19px solid #FF0000)]
-      RenderBlock {DIV} at (0,33) size 231x232 [border: (19.19px solid #008000)]
</del><ins>+      RenderBlock {DIV} at (0,34) size 230x230 [border: (19px solid #FF0000)]
+      RenderBlock {DIV} at (0,33) size 230x231 [border: (19px solid #008000)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacietestcentercss3bordersbackgroundsbordertopleftradiusvalues003expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,17 +1,17 @@
</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 800x363
-  RenderBlock {HTML} at (0,0) size 800x363
-    RenderBody {BODY} at (8,16) size 784x339
</del><ins>+layer at (0,0) size 800x362
+  RenderBlock {HTML} at (0,0) size 800x362
+    RenderBody {BODY} at (8,16) size 784x338
</ins><span class="cx">       RenderBlock {P} at (0,0) size 784x18
</span><span class="cx">         RenderText {#text} at (0,0) size 268x18
</span><span class="cx">           text run at (0,0) width 268: &quot;Test passes if the four boxes are identical.&quot;
</span><del>-      RenderTable {TABLE} at (0,34) size 319x305
-        RenderTableSection {TBODY} at (0,0) size 319x305
-          RenderTableRow {TR} at (0,2) size 319x301
-            RenderTableCell {TD} at (2,2) size 157x301 [r=0 c=0 rs=1 cs=1]
-              RenderBlock {DIV} at (11,11) size 135x135 [border: (19.19px solid #000000)]
-              RenderBlock {DIV} at (11,155) size 135x135 [border: (19.19px solid #000000)]
-            RenderTableCell {TD} at (160,2) size 157x301 [r=0 c=1 rs=1 cs=1]
-              RenderBlock {DIV} at (11,11) size 135x135 [border: (19.19px solid #000000)]
-              RenderBlock {DIV} at (11,155) size 135x135 [border: (19.19px solid #000000)]
</del><ins>+      RenderTable {TABLE} at (0,34) size 318x304
+        RenderTableSection {TBODY} at (0,0) size 318x304
+          RenderTableRow {TR} at (0,2) size 318x300
+            RenderTableCell {TD} at (2,2) size 156x300 [r=0 c=0 rs=1 cs=1]
+              RenderBlock {DIV} at (11,11) size 134x134 [border: (19px solid #000000)]
+              RenderBlock {DIV} at (11,155) size 134x134 [border: (19px solid #000000)]
+            RenderTableCell {TD} at (160,2) size 156x300 [r=0 c=1 rs=1 cs=1]
+              RenderBlock {DIV} at (11,11) size 134x134 [border: (19px solid #000000)]
+              RenderBlock {DIV} at (11,155) size 134x134 [border: (19px solid #000000)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacmediavideozoomexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/media/video-zoom-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/media/video-zoom-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/media/video-zoom-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,23 +1,23 @@
</span><del>-layer at (0,0) size 785x846
</del><ins>+layer at (0,0) size 785x844
</ins><span class="cx">   RenderView at (0,0) size 785x600
</span><del>-layer at (0,0) size 785x846
-  RenderBlock {HTML} at (0,0) size 785x846
-    RenderBody {BODY} at (8,8) size 769x830
</del><ins>+layer at (0,0) size 785x844
+  RenderBlock {HTML} at (0,0) size 785x844
+    RenderBody {BODY} at (8,8) size 769x828
</ins><span class="cx">       RenderBlock {P} at (0,0) size 769x18
</span><span class="cx">         RenderText {#text} at (0,0) size 289x18
</span><span class="cx">           text run at (0,0) width 289: &quot;150% zoom, with width and height attributes&quot;
</span><del>-      RenderBlock (anonymous) at (0,34) size 769x373
-        RenderText {#text} at (0,355) size 4x18
-          text run at (0,355) width 4: &quot; &quot;
-        RenderBR {BR} at (493,369) size 0x0
-      RenderBlock {P} at (0,423) size 769x18
</del><ins>+      RenderBlock (anonymous) at (0,34) size 769x372
+        RenderText {#text} at (0,354) size 4x18
+          text run at (0,354) width 4: &quot; &quot;
+        RenderBR {BR} at (492,368) size 0x0
+      RenderBlock {P} at (0,422) size 769x18
</ins><span class="cx">         RenderText {#text} at (0,0) size 309x18
</span><span class="cx">           text run at (0,0) width 309: &quot;150% zoom, without width and height attributes&quot;
</span><del>-      RenderBlock (anonymous) at (0,457) size 769x373
-        RenderText {#text} at (0,355) size 4x18
-          text run at (0,355) width 4: &quot; &quot;
-        RenderBR {BR} at (493,369) size 0x0
-layer at (12,42) size 489x369
-  RenderVideo {VIDEO} at (4,0) size 489x369 [border: (4.50px solid #FF0000)]
-layer at (12,465) size 489x369
-  RenderVideo {VIDEO} at (4,0) size 489x369 [border: (4.50px solid #FF0000)]
</del><ins>+      RenderBlock (anonymous) at (0,456) size 769x372
+        RenderText {#text} at (0,354) size 4x18
+          text run at (0,354) width 4: &quot; &quot;
+        RenderBR {BR} at (492,368) size 0x0
+layer at (12,42) size 488x368
+  RenderVideo {VIDEO} at (4,0) size 488x368 [border: (4px solid #FF0000)]
+layer at (12,464) size 488x368
+  RenderVideo {VIDEO} at (4,0) size 488x368 [border: (4px solid #FF0000)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacsvgcustomsvgfontsinhtmlexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/custom/svg-fonts-in-html-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/custom/svg-fonts-in-html-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/custom/svg-fonts-in-html-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -78,9 +78,9 @@
</span><span class="cx">           text run at (11,97) width 431: &quot;Learn to use the (yet to be) time-honored techniques in new&quot;
</span><span class="cx">           text run at (11,111) width 353: &quot;and invigorating fashion. Become one with the web.&quot;
</span><span class="cx">     RenderText {#text} at (0,0) size 0x0
</span><del>-layer at (321,234) size 307x81
-  RenderBlock (positioned) {H3} at (147,-118) size 307x83 [color=#CCCC77] [bgcolor=#888811] [border: (3.77px solid #888811) none (3.77px solid #888811)]
-    RenderInline {SPAN} at (0,0) size 278x83
-      RenderText {#text} at (45,-1) size 278x83
-        text run at (45,-1) width 231: &quot;The Road to&quot;
-        text run at (3,36) width 278: &quot;Enlightenment&quot;
</del><ins>+layer at (321,235) size 306x80
+  RenderBlock (positioned) {H3} at (148,-116) size 306x81 [color=#CCCC77] [bgcolor=#888811] [border: (3px solid #888811) none (3px solid #888811)]
+    RenderInline {SPAN} at (0,0) size 277x83
+      RenderText {#text} at (44,-2) size 277x83
+        text run at (44,-2) width 232: &quot;The Road to&quot;
+        text run at (3,35) width 277: &quot;Enlightenment&quot;
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacsvgzoompagezoombackgroundimagetiledexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-background-image-tiled-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-background-image-tiled-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-background-image-tiled-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -2,5 +2,5 @@
</span><span class="cx">   RenderView at (0,0) size 800x600
</span><span class="cx"> layer at (0,0) size 800x245
</span><span class="cx">   RenderBlock {HTML} at (0,0) size 800x245
</span><del>-    RenderBody {BODY} at (16,16) size 768x213
-      RenderBlock {DIV} at (0,0) size 771x212 [border: (2.06px solid #CCCCCC)]
</del><ins>+    RenderBody {BODY} at (16,16) size 768x212
+      RenderBlock {DIV} at (0,0) size 771x212 [border: (2px solid #CCCCCC)]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacsvgzoompagezoombackgroundimagesexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-background-images-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-background-images-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-background-images-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -3,16 +3,16 @@
</span><span class="cx"> layer at (0,0) size 800x163
</span><span class="cx">   RenderBlock {HTML} at (0,0) size 800x164
</span><span class="cx">     RenderBody {BODY} at (4,4) size 792x155
</span><del>-      RenderBlock {DIV} at (11,11) size 131x131 [border: (1.16px solid #000000)]
</del><ins>+      RenderBlock {DIV} at (11,11) size 130x130 [border: (1px solid #000000)]
</ins><span class="cx">       RenderText {#text} at (152,144) size 3x10
</span><span class="cx">         text run at (152,144) width 3: &quot; &quot;
</span><del>-      RenderBlock {DIV} at (166,11) size 131x131 [border: (1.16px solid #000000)]
</del><ins>+      RenderBlock {DIV} at (166,11) size 130x130 [border: (1px solid #000000)]
</ins><span class="cx">       RenderText {#text} at (307,144) size 3x10
</span><span class="cx">         text run at (307,144) width 3: &quot; &quot;
</span><del>-      RenderBlock {DIV} at (321,11) size 131x131 [border: (1.16px solid #000000)]
-      RenderText {#text} at (462,144) size 3x10
-        text run at (462,144) width 3: &quot; &quot;
-      RenderImage {IMG} at (476,11) size 131x131 [border: (1.16px solid #000000)]
</del><ins>+      RenderBlock {DIV} at (320,11) size 131x130 [border: (1px solid #000000)]
+      RenderText {#text} at (461,144) size 4x10
+        text run at (461,144) width 4: &quot; &quot;
+      RenderImage {IMG} at (475,11) size 130x130 [border: (1px solid #000000)]
</ins><span class="cx">       RenderText {#text} at (0,0) size 0x0
</span><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="releasesWebKitGTKwebkit212LayoutTestsplatformmacsvgzoompagezoomreplacedintrinsicratio001expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,62 +1,62 @@
</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 800x474
-  RenderBlock {HTML} at (0,0) size 800x475
-    RenderBody {BODY} at (4,4) size 142x463 [border: (1px dashed #C0C0C0)]
</del><ins>+layer at (0,0) size 800x476
+  RenderBlock {HTML} at (0,0) size 800x476
+    RenderBody {BODY} at (4,4) size 142x464 [border: (1px dashed #C0C0C0)]
</ins><span class="cx">       RenderBlock {P} at (1,10) size 139x28
</span><span class="cx">         RenderText {#text} at (0,-1) size 136x28
</span><span class="cx">           text run at (0,-1) width 136: &quot;The following six blue boxes must be&quot;
</span><span class="cx">           text run at (0,8) width 132: &quot;of the same width. There must be no&quot;
</span><span class="cx">           text run at (0,17) width 14: &quot;red.&quot;
</span><del>-      RenderBlock {P} at (10,46) size 121x29 [bgcolor=#008000] [border: (9.25px solid #0000FF)]
</del><ins>+      RenderBlock {P} at (10,46) size 121x28 [bgcolor=#008000] [border: (9px solid #0000FF)]
</ins><span class="cx">         RenderText {#text} at (9,8) size 3x10
</span><span class="cx">           text run at (9,8) width 3: &quot; &quot;
</span><del>-      RenderBlock {P} at (1,129) size 139x11
</del><ins>+      RenderBlock {P} at (1,129) size 139x10
</ins><span class="cx">         RenderText {#text} at (0,-1) size 14x10
</span><span class="cx">           text run at (0,-1) width 14: &quot;      &quot;
</span><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span><del>-        RenderEmbeddedObject {OBJECT} at (9,-1) size 121x45 [bgcolor=#FF0000] [border: (9.25px solid #0000FF)]
-          layer at (0,0) size 102x25
-            RenderView at (0,0) size 102x25
-          layer at (0,0) size 102x25
-            RenderSVGRoot {svg} at (0,0) size 101x25
-              RenderSVGRect {rect} at (0,0) size 101x25 [stroke={[type=SOLID] [color=#008000] [stroke width=12.00]}] [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=0.00] [width=1000.00] [height=250.00]
-              RenderSVGPath {path} at (15,5) size 70x15 [fill={[type=SOLID] [color=#008000]}] [data=&quot;M 500 50 L 150 200 L 850 200 Z&quot;]
</del><ins>+        RenderEmbeddedObject {OBJECT} at (9,-1) size 121x45 [bgcolor=#FF0000] [border: (9px solid #0000FF)]
+          layer at (0,0) size 102x26
+            RenderView at (0,0) size 102x26
+          layer at (0,0) size 102x26
+            RenderSVGRoot {svg} at (0,0) size 102x26
+              RenderSVGRect {rect} at (0,0) size 102x26 [stroke={[type=SOLID] [color=#008000] [stroke width=12.00]}] [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=0.00] [width=1000.00] [height=250.00]
+              RenderSVGPath {path} at (15,5) size 72x16 [fill={[type=SOLID] [color=#008000]}] [data=&quot;M 500 50 L 150 200 L 850 200 Z&quot;]
</ins><span class="cx">       RenderBlock {P} at (1,194) size 139x10
</span><del>-        RenderEmbeddedObject {OBJECT} at (9,0) size 121x44 [bgcolor=#FF0000] [border: (9.25px solid #0000FF)]
-          layer at (0,0) size 102x25
-            RenderView at (0,0) size 102x25
-          layer at (0,0) size 102x25
-            RenderSVGRoot {svg} at (0,0) size 101x25
-              RenderSVGRect {rect} at (0,0) size 101x25 [stroke={[type=SOLID] [color=#008000] [stroke width=12.00]}] [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=0.00] [width=1000.00] [height=250.00]
-              RenderSVGPath {path} at (15,5) size 70x15 [fill={[type=SOLID] [color=#008000]}] [data=&quot;M 500 50 L 150 200 L 850 200 Z&quot;]
-      RenderTable at (1,259) size 139x46
-        RenderTableSection (anonymous) at (0,0) size 139x45
-          RenderTableRow (anonymous) at (0,0) size 139x45
-            RenderTableCell {P} at (0,0) size 139x45 [r=0 c=0 rs=1 cs=1]
-              RenderEmbeddedObject {OBJECT} at (9,0) size 121x44 [bgcolor=#FF0000] [border: (9.25px solid #0000FF)]
-                layer at (0,0) size 102x25
-                  RenderView at (0,0) size 102x25
-                layer at (0,0) size 102x25
-                  RenderSVGRoot {svg} at (0,0) size 101x25
-                    RenderSVGRect {rect} at (0,0) size 101x25 [stroke={[type=SOLID] [color=#008000] [stroke width=12.00]}] [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=0.00] [width=1000.00] [height=250.00]
-                    RenderSVGPath {path} at (15,5) size 70x15 [fill={[type=SOLID] [color=#008000]}] [data=&quot;M 500 50 L 150 200 L 850 200 Z&quot;]
-      RenderTable {TABLE} at (1,359) size 139x46
-        RenderTableSection {TBODY} at (0,0) size 139x45
-          RenderTableRow {TR} at (0,0) size 139x45
-            RenderTableCell {TD} at (0,0) size 139x45 [r=0 c=0 rs=1 cs=1]
-              RenderEmbeddedObject {OBJECT} at (9,0) size 121x44 [bgcolor=#FF0000] [border: (9.25px solid #0000FF)]
-                layer at (0,0) size 102x25
-                  RenderView at (0,0) size 102x25
-                layer at (0,0) size 102x25
-                  RenderSVGRoot {svg} at (0,0) size 101x25
-                    RenderSVGRect {rect} at (0,0) size 101x25 [stroke={[type=SOLID] [color=#008000] [stroke width=12.00]}] [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=0.00] [width=1000.00] [height=250.00]
-                    RenderSVGPath {path} at (15,5) size 70x15 [fill={[type=SOLID] [color=#008000]}] [data=&quot;M 500 50 L 150 200 L 850 200 Z&quot;]
-      RenderBlock (floating) {P} at (1,460) size 139x10
-        RenderEmbeddedObject {OBJECT} at (9,0) size 121x44 [bgcolor=#FF0000] [border: (9.25px solid #0000FF)]
-          layer at (0,0) size 102x25
-            RenderView at (0,0) size 102x25
-          layer at (0,0) size 102x25
-            RenderSVGRoot {svg} at (0,0) size 101x25
-              RenderSVGRect {rect} at (0,0) size 101x25 [stroke={[type=SOLID] [color=#008000] [stroke width=12.00]}] [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=0.00] [width=1000.00] [height=250.00]
-              RenderSVGPath {path} at (15,5) size 70x15 [fill={[type=SOLID] [color=#008000]}] [data=&quot;M 500 50 L 150 200 L 850 200 Z&quot;]
</del><ins>+        RenderEmbeddedObject {OBJECT} at (9,0) size 121x44 [bgcolor=#FF0000] [border: (9px solid #0000FF)]
+          layer at (0,0) size 102x26
+            RenderView at (0,0) size 102x26
+          layer at (0,0) size 102x26
+            RenderSVGRoot {svg} at (0,0) size 102x26
+              RenderSVGRect {rect} at (0,0) size 102x26 [stroke={[type=SOLID] [color=#008000] [stroke width=12.00]}] [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=0.00] [width=1000.00] [height=250.00]
+              RenderSVGPath {path} at (15,5) size 72x16 [fill={[type=SOLID] [color=#008000]}] [data=&quot;M 500 50 L 150 200 L 850 200 Z&quot;]
+      RenderTable at (1,258) size 139x47
+        RenderTableSection (anonymous) at (0,0) size 139x46
+          RenderTableRow (anonymous) at (0,0) size 139x46
+            RenderTableCell {P} at (0,0) size 139x46 [r=0 c=0 rs=1 cs=1]
+              RenderEmbeddedObject {OBJECT} at (9,0) size 121x44 [bgcolor=#FF0000] [border: (9px solid #0000FF)]
+                layer at (0,0) size 102x26
+                  RenderView at (0,0) size 102x26
+                layer at (0,0) size 102x26
+                  RenderSVGRoot {svg} at (0,0) size 102x26
+                    RenderSVGRect {rect} at (0,0) size 102x26 [stroke={[type=SOLID] [color=#008000] [stroke width=12.00]}] [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=0.00] [width=1000.00] [height=250.00]
+                    RenderSVGPath {path} at (15,5) size 72x16 [fill={[type=SOLID] [color=#008000]}] [data=&quot;M 500 50 L 150 200 L 850 200 Z&quot;]
+      RenderTable {TABLE} at (1,360) size 139x47
+        RenderTableSection {TBODY} at (0,0) size 139x46
+          RenderTableRow {TR} at (0,0) size 139x46
+            RenderTableCell {TD} at (0,0) size 139x46 [r=0 c=0 rs=1 cs=1]
+              RenderEmbeddedObject {OBJECT} at (9,0) size 121x44 [bgcolor=#FF0000] [border: (9px solid #0000FF)]
+                layer at (0,0) size 102x26
+                  RenderView at (0,0) size 102x26
+                layer at (0,0) size 102x26
+                  RenderSVGRoot {svg} at (0,0) size 102x26
+                    RenderSVGRect {rect} at (0,0) size 102x26 [stroke={[type=SOLID] [color=#008000] [stroke width=12.00]}] [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=0.00] [width=1000.00] [height=250.00]
+                    RenderSVGPath {path} at (15,5) size 72x16 [fill={[type=SOLID] [color=#008000]}] [data=&quot;M 500 50 L 150 200 L 850 200 Z&quot;]
+      RenderBlock (floating) {P} at (1,461) size 139x11
+        RenderEmbeddedObject {OBJECT} at (9,0) size 121x44 [bgcolor=#FF0000] [border: (9px solid #0000FF)]
+          layer at (0,0) size 102x26
+            RenderView at (0,0) size 102x26
+          layer at (0,0) size 102x26
+            RenderSVGRoot {svg} at (0,0) size 102x26
+              RenderSVGRect {rect} at (0,0) size 102x26 [stroke={[type=SOLID] [color=#008000] [stroke width=12.00]}] [fill={[type=SOLID] [color=#00FF00]}] [x=0.00] [y=0.00] [width=1000.00] [height=250.00]
+              RenderSVGPath {path} at (15,5) size 72x16 [fill={[type=SOLID] [color=#008000]}] [data=&quot;M 500 50 L 150 200 L 850 200 Z&quot;]
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacsvgzoompagezoomsvgfloatborderpaddingexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-svg-float-border-padding-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-svg-float-border-padding-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-svg-float-border-padding-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,8 +1,8 @@
</span><del>-layer at (0,0) size 785x769
</del><ins>+layer at (0,0) size 785x767
</ins><span class="cx">   RenderView at (0,0) size 785x600
</span><del>-layer at (0,0) size 785x769
-  RenderBlock {html} at (0,0) size 785x770
-    RenderBody {body} at (11,11) size 763x736
</del><ins>+layer at (0,0) size 785x767
+  RenderBlock {html} at (0,0) size 785x767
+    RenderBody {body} at (11,11) size 763x733
</ins><span class="cx">       RenderBlock (anonymous) at (0,0) size 762x52
</span><span class="cx">         RenderText {#text} at (0,0) size 747x52
</span><span class="cx">           text run at (0,0) width 352: &quot;The two blocks should look identical. &quot;
</span><span class="lines">@@ -11,17 +11,17 @@
</span><span class="cx">       RenderBlock {p} at (0,75) size 762x27
</span><span class="cx">         RenderText {#text} at (0,0) size 517x26
</span><span class="cx">           text run at (0,0) width 517: &quot;There should be a red, white and blue pattern below this&quot;
</span><del>-      RenderSVGRoot {svg} at (25,149) size 203x203
-        RenderSVGRect {rect} at (25,149) size 203x203 [fill={[type=SOLID] [color=#0000FF]}] [x=0.00] [y=0.00] [width=100.00] [height=100.00]
-      RenderBlock {p} at (0,354) size 762x27
</del><ins>+      RenderSVGRoot {svg} at (25,149) size 202x202
+        RenderSVGRect {rect} at (25,149) size 202x202 [fill={[type=SOLID] [color=#0000FF]}] [x=0.00] [y=0.00] [width=100.00] [height=100.00]
+      RenderBlock {p} at (0,353) size 762x27
</ins><span class="cx">         RenderText {#text} at (0,0) size 516x26
</span><span class="cx">           text run at (0,0) width 516: &quot;There should be a red, white and blue pattern above this&quot;
</span><del>-      RenderBlock {hr} at (0,403) size 762x4 [border: (1.44px inset #000000)]
-      RenderBlock {p} at (0,429) size 762x27
</del><ins>+      RenderBlock {hr} at (0,402) size 762x3 [border: (1px inset #000000)]
+      RenderBlock {p} at (0,427) size 762x27
</ins><span class="cx">         RenderText {#text} at (0,0) size 517x26
</span><span class="cx">           text run at (0,0) width 517: &quot;There should be a red, white and blue pattern below this&quot;
</span><del>-      RenderBlock (floating) {div} at (14,492) size 202x203 [border: (14.39px solid #FF0000)]
</del><ins>+      RenderBlock (floating) {div} at (14,491) size 202x201 [border: (14px solid #FF0000)]
</ins><span class="cx">         RenderBlock {div} at (28,28) size 145x145 [bgcolor=#0000FF]
</span><del>-      RenderBlock {p} at (0,708) size 762x27
</del><ins>+      RenderBlock {p} at (0,706) size 762x27
</ins><span class="cx">         RenderText {#text} at (0,0) size 516x26
</span><span class="cx">           text run at (0,0) width 516: &quot;There should be a red, white and blue pattern above this&quot;
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmacsvgzoompagezoomsvgthroughobjectwithautosizeexpectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,17 +1,17 @@
</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 800x173
-  RenderBlock {HTML} at (0,0) size 800x174
-    RenderBody {BODY} at (5,5) size 790x163
-      RenderEmbeddedObject {OBJECT} at (0,0) size 160x160 [border: (1.38px dashed #800000)]
</del><ins>+layer at (0,0) size 800x172
+  RenderBlock {HTML} at (0,0) size 800x173
+    RenderBody {BODY} at (5,5) size 790x162
+      RenderEmbeddedObject {OBJECT} at (0,0) size 159x159 [border: (1px dashed #800000)]
</ins><span class="cx">         layer at (0,0) size 153x153
</span><span class="cx">           RenderView at (0,0) size 153x153
</span><span class="cx">         layer at (0,0) size 153x153
</span><span class="cx">           RenderSVGRoot {svg} at (0,0) size 153x153
</span><span class="cx">             RenderSVGEllipse {circle} at (0,0) size 153x153 [stroke={[type=SOLID] [color=#000000]}] [fill={[type=SOLID] [color=#D9BB7A] [fill rule=EVEN-ODD]}] [cx=110.00] [cy=110.00] [r=110.00]
</span><del>-      RenderText {#text} at (159,149) size 4x13
-        text run at (159,149) width 4: &quot; &quot;
-      RenderEmbeddedObject {OBJECT} at (162,0) size 161x160 [border: (1.38px dashed #800000)]
</del><ins>+      RenderText {#text} at (158,148) size 4x13
+        text run at (158,148) width 4: &quot; &quot;
+      RenderEmbeddedObject {OBJECT} at (161,0) size 160x159 [border: (1px dashed #800000)]
</ins><span class="cx">         layer at (0,0) size 153x153
</span><span class="cx">           RenderView at (0,0) size 153x153
</span><span class="cx">         layer at (0,0) size 153x153
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212LayoutTestsplatformmactablesmozilla_expected_failuresbugsbug10552expectedtxt"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,8 +1,8 @@
</span><del>-layer at (0,0) size 785x901
</del><ins>+layer at (0,0) size 785x896
</ins><span class="cx">   RenderView at (0,0) size 785x600
</span><del>-layer at (0,0) size 785x901
-  RenderBlock {HTML} at (0,0) size 785x901
-    RenderBody {BODY} at (8,8) size 769x877 [bgcolor=#FFFFFF]
</del><ins>+layer at (0,0) size 785x896
+  RenderBlock {HTML} at (0,0) size 785x897
+    RenderBody {BODY} at (8,8) size 769x873 [bgcolor=#FFFFFF]
</ins><span class="cx">       RenderBlock {H1} at (0,0) size 769x37
</span><span class="cx">         RenderText {#text} at (0,0) size 357x37
</span><span class="cx">           text run at (0,0) width 357: &quot;Tests de conformit\x{E9} CSS 2&quot;
</span><span class="lines">@@ -53,41 +53,41 @@
</span><span class="cx">           text run at (0,135) width 469: &quot;.secondtable { border-width : 10pt ; border-color : yellow ;&quot;
</span><span class="cx">           text run at (0,150) width 305: &quot;                border-style : double ;&quot;
</span><span class="cx">           text run at (0,165) width 344: &quot;                border-collapse : collapse }&quot;
</span><del>-      RenderTable {TABLE} at (96,438) size 577x135 [border: (13.33px double #FFFF00)]
-        RenderTableSection {TBODY} at (13,13) size 551x109
-          RenderTableRow {TR} at (0,2) size 551x34
-            RenderTableCell {TD} at (2,2) size 181x34 [border: (6.66px double #000000)] [r=0 c=0 rs=1 cs=1]
-              RenderText {#text} at (7,8) size 9x18
-                text run at (7,8) width 9: &quot;1&quot;
-            RenderTableCell {TD} at (184,2) size 182x34 [border: (6.66px solid #FF0000)] [r=0 c=1 rs=1 cs=1]
-              RenderText {#text} at (7,8) size 9x18
-                text run at (7,8) width 9: &quot;2&quot;
-            RenderTableCell {TD} at (367,2) size 182x34 [border: (6.66px groove #00FF00)] [r=0 c=2 rs=1 cs=1]
-              RenderText {#text} at (7,8) size 9x18
-                text run at (7,8) width 9: &quot;3&quot;
-          RenderTableRow {TR} at (0,37) size 551x34
-            RenderTableCell {TD} at (2,37) size 181x34 [border: (6.66px inset #0000FF)] [r=1 c=0 rs=1 cs=1]
-              RenderText {#text} at (7,8) size 9x18
-                text run at (7,8) width 9: &quot;4&quot;
-            RenderTableCell {TD} at (184,37) size 182x34 [border: (6.66px double #000000)] [r=1 c=1 rs=1 cs=1]
-              RenderText {#text} at (7,8) size 9x18
-                text run at (7,8) width 9: &quot;5&quot;
-            RenderTableCell {TD} at (367,37) size 182x34 [border: (6.66px solid #FF0000)] [r=1 c=2 rs=1 cs=1]
-              RenderText {#text} at (7,8) size 9x18
-                text run at (7,8) width 9: &quot;6&quot;
-          RenderTableRow {TR} at (0,72) size 551x34
-            RenderTableCell {TD} at (2,72) size 181x34 [border: (6.66px groove #00FF00)] [r=2 c=0 rs=1 cs=1]
-              RenderText {#text} at (7,8) size 9x18
-                text run at (7,8) width 9: &quot;7&quot;
-            RenderTableCell {TD} at (184,72) size 182x34 [border: (6.66px inset #0000FF)] [r=2 c=1 rs=1 cs=1]
-              RenderText {#text} at (7,8) size 9x18
-                text run at (7,8) width 9: &quot;8&quot;
-            RenderTableCell {TD} at (367,72) size 182x34 [border: (6.66px double #000000)] [r=2 c=2 rs=1 cs=1]
-              RenderText {#text} at (7,8) size 9x18
-                text run at (7,8) width 9: &quot;9&quot;
-      RenderBlock (anonymous) at (0,572) size 769x19
</del><ins>+      RenderTable {TABLE} at (96,438) size 577x131 [border: (13px double #FFFF00)]
+        RenderTableSection {TBODY} at (13,13) size 551x104
+          RenderTableRow {TR} at (0,2) size 551x32
+            RenderTableCell {TD} at (2,2) size 181x32 [border: (6px double #000000)] [r=0 c=0 rs=1 cs=1]
+              RenderText {#text} at (7,7) size 8x18
+                text run at (7,7) width 8: &quot;1&quot;
+            RenderTableCell {TD} at (184,2) size 182x32 [border: (6px solid #FF0000)] [r=0 c=1 rs=1 cs=1]
+              RenderText {#text} at (7,7) size 8x18
+                text run at (7,7) width 8: &quot;2&quot;
+            RenderTableCell {TD} at (367,2) size 182x32 [border: (6px groove #00FF00)] [r=0 c=2 rs=1 cs=1]
+              RenderText {#text} at (7,7) size 8x18
+                text run at (7,7) width 8: &quot;3&quot;
+          RenderTableRow {TR} at (0,36) size 551x32
+            RenderTableCell {TD} at (2,36) size 181x32 [border: (6px inset #0000FF)] [r=1 c=0 rs=1 cs=1]
+              RenderText {#text} at (7,7) size 8x18
+                text run at (7,7) width 8: &quot;4&quot;
+            RenderTableCell {TD} at (184,36) size 182x32 [border: (6px double #000000)] [r=1 c=1 rs=1 cs=1]
+              RenderText {#text} at (7,7) size 8x18
+                text run at (7,7) width 8: &quot;5&quot;
+            RenderTableCell {TD} at (367,36) size 182x32 [border: (6px solid #FF0000)] [r=1 c=2 rs=1 cs=1]
+              RenderText {#text} at (7,7) size 8x18
+                text run at (7,7) width 8: &quot;6&quot;
+          RenderTableRow {TR} at (0,70) size 551x32
+            RenderTableCell {TD} at (2,70) size 181x32 [border: (6px groove #00FF00)] [r=2 c=0 rs=1 cs=1]
+              RenderText {#text} at (7,7) size 8x18
+                text run at (7,7) width 8: &quot;7&quot;
+            RenderTableCell {TD} at (184,70) size 182x32 [border: (6px inset #0000FF)] [r=2 c=1 rs=1 cs=1]
+              RenderText {#text} at (7,7) size 8x18
+                text run at (7,7) width 8: &quot;8&quot;
+            RenderTableCell {TD} at (367,70) size 182x32 [border: (6px double #000000)] [r=2 c=2 rs=1 cs=1]
+              RenderText {#text} at (7,7) size 8x18
+                text run at (7,7) width 8: &quot;9&quot;
+      RenderBlock (anonymous) at (0,568) size 769x19
</ins><span class="cx">         RenderBR {BR} at (0,0) size 0x18
</span><del>-      RenderTable {TABLE} at (96,590) size 577x99 [border: (6px double #FFFF00)]
</del><ins>+      RenderTable {TABLE} at (96,586) size 577x99 [border: (6px double #FFFF00)]
</ins><span class="cx">         RenderTableSection {TBODY} at (6,6) size 564x85
</span><span class="cx">           RenderTableRow {TR} at (0,0) size 564x30
</span><span class="cx">             RenderTableCell {TD} at (0,0) size 205x30 [border: (7px double #000000)] [r=0 c=0 rs=1 cs=1]
</span><span class="lines">@@ -119,13 +119,13 @@
</span><span class="cx">             RenderTableCell {TD} at (369,56) size 195x29 [border: (3px double #000000)] [r=2 c=2 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (4,4) size 8x18
</span><span class="cx">                 text run at (4,4) width 8: &quot;9&quot;
</span><del>-      RenderBlock {P} at (0,704) size 769x37
</del><ins>+      RenderBlock {P} at (0,700) size 769x37
</ins><span class="cx">         RenderText {#text} at (0,0) size 757x36
</span><span class="cx">           text run at (0,0) width 311: &quot;Si toutes les conditions exprim\x{E9}es par les r\x{E8}gles &quot;
</span><span class="cx">           text run at (310,0) width 447: &quot;CSS ci-dessus se retrouvent dans le formatage des tableaux ci-dessus,&quot;
</span><span class="cx">           text run at (0,18) width 60: &quot;la valeur &quot;
</span><span class="cx">           text run at (59,18) width 165: &quot;de ce test est 2 et 0 sinon.&quot;
</span><del>-      RenderTable {TABLE} at (192,756) size 577x47
</del><ins>+      RenderTable {TABLE} at (192,752) size 577x47
</ins><span class="cx">         RenderTableSection {TBODY} at (0,0) size 577x46
</span><span class="cx">           RenderTableRow {TR} at (0,2) size 577x20
</span><span class="cx">             RenderTableCell {TD} at (2,2) size 573x20 [r=0 c=0 rs=1 cs=3]
</span><span class="lines">@@ -142,15 +142,15 @@
</span><span class="cx">               RenderInline {A} at (0,0) size 74x18 [color=#0000EE]
</span><span class="cx">                 RenderText {#text} at (68,1) size 74x18
</span><span class="cx">                   text run at (68,1) width 74: &quot;test suivant&quot;
</span><del>-      RenderBlock {P} at (0,756) size 769x19
</del><ins>+      RenderBlock {P} at (0,752) size 769x19
</ins><span class="cx">         RenderText {#text} at (0,0) size 4x18
</span><span class="cx">           text run at (0,0) width 4: &quot; &quot;
</span><del>-      RenderBlock {P} at (0,790) size 769x19
</del><ins>+      RenderBlock {P} at (0,786) size 769x19
</ins><span class="cx">         RenderText {#text} at (0,0) size 4x18
</span><span class="cx">           text run at (0,0) width 4: &quot; &quot;
</span><del>-      RenderBlock {P} at (0,824) size 769x19
</del><ins>+      RenderBlock {P} at (0,820) size 769x19
</ins><span class="cx">         RenderText {#text} at (0,0) size 4x18
</span><span class="cx">           text run at (0,0) width 4: &quot; &quot;
</span><del>-      RenderBlock {P} at (0,858) size 769x19
</del><ins>+      RenderBlock {P} at (0,854) size 769x19
</ins><span class="cx">         RenderText {#text} at (0,0) size 166x18
</span><span class="cx">           text run at (0,0) width 166: &quot;Auteur : Daniel Glazman.&quot;
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212SourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/Source/WebCore/ChangeLog (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/Source/WebCore/ChangeLog        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/Source/WebCore/ChangeLog        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -1,3 +1,23 @@
</span><ins>+2016-04-04  Zalan Bujtas  &lt;zalan@apple.com&gt;
+
+        CSS Triangles Rendering Regression affecting CSS Ribbons.
+        https://bugs.webkit.org/show_bug.cgi?id=156121
+
+        Reviewed by Simon Fraser.
+
+        We use floored border width values for painting (see BorderEdge).
+        However border-box sizing is based on rounded border values. This mismatch could result in a 2 device pixel
+        gap when both top and bottom (or left and right) borders are present.
+        
+        This patch applies flooring on the computed border width value.
+
+        It matches FireFox (44.0.2) behaviour (both by inspecting box-sizing visually and through getComputedStyle() values on border-width).
+    
+        Covered by existing tests.
+
+        * css/StyleBuilderConverter.h:
+        (WebCore::StyleBuilderConverter::convertLineWidth):
+
</ins><span class="cx"> 2016-04-04  Emanuele Aina  &lt;emanuele.aina@collabora.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [TexMap] Trim redundant guards
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit212SourceWebCorecssStyleBuilderConverterh"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.12/Source/WebCore/css/StyleBuilderConverter.h (199482 => 199483)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.12/Source/WebCore/css/StyleBuilderConverter.h        2016-04-13 14:52:46 UTC (rev 199482)
+++ releases/WebKitGTK/webkit-2.12/Source/WebCore/css/StyleBuilderConverter.h        2016-04-13 14:56:43 UTC (rev 199483)
</span><span class="lines">@@ -40,6 +40,7 @@
</span><span class="cx"> #include &quot;CSSPrimitiveValue.h&quot;
</span><span class="cx"> #include &quot;CSSReflectValue.h&quot;
</span><span class="cx"> #include &quot;Frame.h&quot;
</span><ins>+#include &quot;LayoutUnit.h&quot;
</ins><span class="cx"> #include &quot;Length.h&quot;
</span><span class="cx"> #include &quot;LengthRepeat.h&quot;
</span><span class="cx"> #include &quot;Pair.h&quot;
</span><span class="lines">@@ -249,7 +250,7 @@
</span><span class="cx">         float minimumLineWidth = 1 / styleResolver.document().deviceScaleFactor();
</span><span class="cx">         if (result &gt; 0 &amp;&amp; result &lt; minimumLineWidth)
</span><span class="cx">             return minimumLineWidth;
</span><del>-        return result;
</del><ins>+        return floorToDevicePixel(result, styleResolver.document().deviceScaleFactor());
</ins><span class="cx">     }
</span><span class="cx">     default:
</span><span class="cx">         ASSERT_NOT_REACHED();
</span></span></pre>
</div>
</div>

</body>
</html>