<!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>[178078] trunk/LayoutTests</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/178078">178078</a></dd>
<dt>Author</dt> <dd>commit-queue@webkit.org</dd>
<dt>Date</dt> <dd>2015-01-07 18:17:51 -0800 (Wed, 07 Jan 2015)</dd>
</dl>

<h3>Log Message</h3>
<pre>Two tests, which include data uri images, need to be changed and rebaselined since the expected results are incorrect.
https://bugs.webkit.org/show_bug.cgi?id=140199.

Patch by Said Abou-Hallawa &lt;sabouhallawa@apple.com&gt; on 2015-01-07
Reviewed by Simon Fraser.

* compositing/tiling/huge-layer-img-expected.txt:
* compositing/tiling/huge-layer-img.html:
* platform/mac/compositing/tiling/huge-layer-img-expected.txt:
This test draws a huge image on a canvas and then gets the data uri from the canvas and
set it as the source of an &lt;img&gt; tag. We need to rebaseline the expected results since
the original ones were incorrect. The test was getting the layer tree too early. Before
the image data was loaded, a tiled layer was created. After the image data is loaded, we
could have figured out that the image is a simple one and we could have removed the tiling.
The fix is to change the test to delay capturing the layer tree only after making sure
that the image data is loaded.

* fast/forms/basic-buttons.html:
* platform/mac-mountainlion/fast/forms/basic-buttons-expected.txt:
* platform/mac/fast/forms/basic-buttons-expected.png:
* platform/mac/fast/forms/basic-buttons-expected.txt:
This test includes a data uri image just to not include a file for the image by itself.
We need to rebaseline the expected results since the original ones were incorrect. The
test was assuming that after the &lt;img&gt; tag is added to the HTML body, the image size can
be retrieved immediately. Because this assumption is incorrect in general, we were getting
empty sizes for all the the data uri images. The fix is to change the test such that it
prints the sizes of the images only after making sure that all the images are loaded.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkLayoutTestscompositingtilinghugelayerimgexpectedtxt">trunk/LayoutTests/compositing/tiling/huge-layer-img-expected.txt</a></li>
<li><a href="#trunkLayoutTestscompositingtilinghugelayerimghtml">trunk/LayoutTests/compositing/tiling/huge-layer-img.html</a></li>
<li><a href="#trunkLayoutTestsfastformsbasicbuttonshtml">trunk/LayoutTests/fast/forms/basic-buttons.html</a></li>
<li><a href="#trunkLayoutTestsplatformmaccompositingtilinghugelayerimgexpectedtxt">trunk/LayoutTests/platform/mac/compositing/tiling/huge-layer-img-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastformsbasicbuttonsexpectedpng">trunk/LayoutTests/platform/mac/fast/forms/basic-buttons-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastformsbasicbuttonsexpectedtxt">trunk/LayoutTests/platform/mac/fast/forms/basic-buttons-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacmountainlionfastformsbasicbuttonsexpectedtxt">trunk/LayoutTests/platform/mac-mountainlion/fast/forms/basic-buttons-expected.txt</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (178077 => 178078)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2015-01-08 02:04:26 UTC (rev 178077)
+++ trunk/LayoutTests/ChangeLog        2015-01-08 02:17:51 UTC (rev 178078)
</span><span class="lines">@@ -1,3 +1,32 @@
</span><ins>+2015-01-07  Said Abou-Hallawa  &lt;sabouhallawa@apple.com&gt;
+
+        Two tests, which include data uri images, need to be changed and rebaselined since the expected results are incorrect.
+        https://bugs.webkit.org/show_bug.cgi?id=140199.
+
+        Reviewed by Simon Fraser.
+
+        * compositing/tiling/huge-layer-img-expected.txt:
+        * compositing/tiling/huge-layer-img.html:
+        * platform/mac/compositing/tiling/huge-layer-img-expected.txt:
+        This test draws a huge image on a canvas and then gets the data uri from the canvas and
+        set it as the source of an &lt;img&gt; tag. We need to rebaseline the expected results since
+        the original ones were incorrect. The test was getting the layer tree too early. Before
+        the image data was loaded, a tiled layer was created. After the image data is loaded, we
+        could have figured out that the image is a simple one and we could have removed the tiling.
+        The fix is to change the test to delay capturing the layer tree only after making sure
+        that the image data is loaded.
+        
+        * fast/forms/basic-buttons.html:
+        * platform/mac-mountainlion/fast/forms/basic-buttons-expected.txt:
+        * platform/mac/fast/forms/basic-buttons-expected.png:
+        * platform/mac/fast/forms/basic-buttons-expected.txt:
+        This test includes a data uri image just to not include a file for the image by itself. 
+        We need to rebaseline the expected results since the original ones were incorrect. The
+        test was assuming that after the &lt;img&gt; tag is added to the HTML body, the image size can
+        be retrieved immediately. Because this assumption is incorrect in general, we were getting
+        empty sizes for all the the data uri images. The fix is to change the test such that it
+        prints the sizes of the images only after making sure that all the images are loaded.
+
</ins><span class="cx"> 2015-01-07  Brent Fulgham  &lt;bfulgham@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [Win] Rebaseline windows fast/text tests.
</span></span></pre></div>
<a id="trunkLayoutTestscompositingtilinghugelayerimgexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/compositing/tiling/huge-layer-img-expected.txt (178077 => 178078)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/compositing/tiling/huge-layer-img-expected.txt        2015-01-08 02:04:26 UTC (rev 178077)
+++ trunk/LayoutTests/compositing/tiling/huge-layer-img-expected.txt        2015-01-08 02:17:51 UTC (rev 178078)
</span><span class="lines">@@ -9,7 +9,6 @@
</span><span class="cx">         (GraphicsLayer
</span><span class="cx">           (position 8.00 8.00)
</span><span class="cx">           (bounds 500.00 20000.00)
</span><del>-          (drawsContent 1)
</del><span class="cx">         )
</span><span class="cx">       )
</span><span class="cx">     )
</span></span></pre></div>
<a id="trunkLayoutTestscompositingtilinghugelayerimghtml"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/compositing/tiling/huge-layer-img.html (178077 => 178078)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/compositing/tiling/huge-layer-img.html        2015-01-08 02:04:26 UTC (rev 178077)
+++ trunk/LayoutTests/compositing/tiling/huge-layer-img.html        2015-01-08 02:17:51 UTC (rev 178078)
</span><span class="lines">@@ -12,8 +12,10 @@
</span><span class="cx">     }
</span><span class="cx">     &lt;/style&gt;
</span><span class="cx">     &lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot;&gt;
</span><del>-        if (window.testRunner)
</del><ins>+        if (window.testRunner) {
</ins><span class="cx">             testRunner.dumpAsText(true);
</span><ins>+            testRunner.waitUntilDone();
+        }
</ins><span class="cx"> 
</span><span class="cx">         function testOnLoad()
</span><span class="cx">         {
</span><span class="lines">@@ -27,9 +29,14 @@
</span><span class="cx">             context.fillStyle = &quot;red&quot;;
</span><span class="cx">             context.fillRect(50, 50, 200, 200);
</span><span class="cx">             img.src = canvas.toDataURL();
</span><del>-
-            if (window.testRunner)
</del><ins>+        }
+        
+        function onImageLoad()
+        {
+            if (window.testRunner) {
</ins><span class="cx">                 document.getElementById('layers').innerHTML = window.internals.layerTreeAsText(document);
</span><ins>+                testRunner.notifyDone();
+            }
</ins><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         window.addEventListener('load', testOnLoad, false);
</span><span class="lines">@@ -41,7 +48,7 @@
</span><span class="cx">         There should be a red box within the yellow box.
</span><span class="cx">         This tests that we can support very large composited image layers.
</span><span class="cx">       --&gt;
</span><del>-        &lt;img id=&quot;container&quot;&gt;
</del><ins>+        &lt;img onload=&quot;onImageLoad()&quot; id=&quot;container&quot;&gt;
</ins><span class="cx">         &lt;pre id=&quot;layers&quot;&gt;Layer tree appears here in DRT.&lt;/pre&gt;
</span><span class="cx">   &lt;/body&gt;
</span><span class="cx"> &lt;/html&gt;
</span></span></pre></div>
<a id="trunkLayoutTestsfastformsbasicbuttonshtml"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/forms/basic-buttons.html (178077 => 178078)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/forms/basic-buttons.html        2015-01-08 02:04:26 UTC (rev 178077)
+++ trunk/LayoutTests/fast/forms/basic-buttons.html        2015-01-08 02:17:51 UTC (rev 178078)
</span><span class="lines">@@ -1,4 +1,5 @@
</span><del>-&lt;!DocType html&gt;&lt;html&gt; 
</del><ins>+&lt;!DocType html&gt;
+&lt;html&gt; 
</ins><span class="cx"> &lt;body&gt; 
</span><span class="cx"> 
</span><span class="cx"> Tests for basic button rendering. Creates a table with seven columns and seven rows. &lt;BR&gt;
</span><span class="lines">@@ -9,6 +10,9 @@
</span><span class="cx"> &lt;script&gt;
</span><span class="cx"> var fooImage = '&lt;img src=&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9YGARc5KB0XV+IAAAAddEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIFRoZSBHSU1Q72QlbgAAAF1JREFUGNO9zL0NglAAxPEfdLTs4BZM4DIO4C7OwQg2JoQ9LE1exdlYvBBeZ7jqch9//q1uH4TLzw4d6+ErXMMcXuHWxId3KOETnnXXV6MJpcq2MLaI97CER3N0vr4MkhoXe0rZigAAAABJRU5ErkJggg==&quot; alt=&quot;Red dot&quot; /&gt;';
</span><span class="cx"> 
</span><ins>+if (window.testRunner)
+    testRunner.waitUntilDone();
+
</ins><span class="cx"> function getRowHtml(style) 
</span><span class="cx"> {
</span><span class="cx">      return '&lt;tr&gt;&lt;td&gt;' + (style || '(default)') + '&lt;/td&gt;' +
</span><span class="lines">@@ -31,7 +35,7 @@
</span><span class="cx">      getRowHtml('padding: 20px') +
</span><span class="cx">      '&lt;/tbody&gt;&lt;/table&gt;';
</span><span class="cx"> 
</span><del>-function printSize(tagname, cell) 
</del><ins>+function printSize(tagname) 
</ins><span class="cx"> {
</span><span class="cx">     var buttons = document.getElementsByTagName(tagname);
</span><span class="cx">     for (var i = 0; i &lt; buttons.length; i++) {
</span><span class="lines">@@ -48,8 +52,16 @@
</span><span class="cx">     }
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-printSize('button');
-printSize('input');
</del><ins>+function testOnLoad()
+{
+    printSize('button');
+    printSize('input');
+    if (window.testRunner)
+        testRunner.notifyDone();
+}
+
+window.addEventListener('load', testOnLoad, false);
+
</ins><span class="cx"> &lt;/script&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;/body&gt; 
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmaccompositingtilinghugelayerimgexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/compositing/tiling/huge-layer-img-expected.txt (178077 => 178078)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/compositing/tiling/huge-layer-img-expected.txt        2015-01-08 02:04:26 UTC (rev 178077)
+++ trunk/LayoutTests/platform/mac/compositing/tiling/huge-layer-img-expected.txt        2015-01-08 02:17:51 UTC (rev 178078)
</span><span class="lines">@@ -10,8 +10,6 @@
</span><span class="cx">         (GraphicsLayer
</span><span class="cx">           (position 8.00 8.00)
</span><span class="cx">           (bounds 500.00 20000.00)
</span><del>-          (usingTiledLayer 1)
-          (drawsContent 1)
</del><span class="cx">         )
</span><span class="cx">       )
</span><span class="cx">     )
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastformsbasicbuttonsexpectedpng"></a>
<div class="binary"><h4>Modified: trunk/LayoutTests/platform/mac/fast/forms/basic-buttons-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastformsbasicbuttonsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac/fast/forms/basic-buttons-expected.txt (178077 => 178078)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/forms/basic-buttons-expected.txt        2015-01-08 02:04:26 UTC (rev 178077)
+++ trunk/LayoutTests/platform/mac/fast/forms/basic-buttons-expected.txt        2015-01-08 02:17:51 UTC (rev 178078)
</span><span class="lines">@@ -42,7 +42,7 @@
</span><span class="cx">                   RenderImage {IMG} at (0,1) size 10x10
</span><span class="cx">             RenderTableCell {TD} at (231,22) size 161x20 [r=1 c=2 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (1,1) size 106x18
</span><del>-                text run at (1,1) width 106: &quot;(18, 16) (18, 12)&quot;
</del><ins>+                text run at (1,1) width 106: &quot;(18, 26) (18, 22)&quot;
</ins><span class="cx">             RenderTableCell {TD} at (392,20) size 135x24 [r=1 c=3 rs=1 cs=1]
</span><span class="cx">               RenderButton {INPUT} at (3,3) size 34x18 [bgcolor=#C0C0C0]
</span><span class="cx">                 RenderBlock (anonymous) at (8,2) size 18x13
</span><span class="lines">@@ -60,8 +60,8 @@
</span><span class="cx">                 RenderBlock (anonymous) at (2,1) size 10x13
</span><span class="cx">                   RenderImage {IMG} at (0,1) size 10x10
</span><span class="cx">             RenderTableCell {TD} at (231,46) size 161x20 [r=2 c=2 rs=1 cs=1]
</span><del>-              RenderText {#text} at (1,1) size 90x18
-                text run at (1,1) width 90: &quot;(15, 4) (15, 0)&quot;
</del><ins>+              RenderText {#text} at (1,1) size 106x18
+                text run at (1,1) width 106: &quot;(15, 14) (15, 10)&quot;
</ins><span class="cx">             RenderTableCell {TD} at (392,44) size 135x24 [r=2 c=3 rs=1 cs=1]
</span><span class="cx">               RenderButton {INPUT} at (3,3) size 34x18 [bgcolor=#C0C0C0]
</span><span class="cx">                 RenderBlock (anonymous) at (8,2) size 18x13
</span><span class="lines">@@ -80,7 +80,7 @@
</span><span class="cx">                   RenderImage {IMG} at (0,1) size 10x10
</span><span class="cx">             RenderTableCell {TD} at (231,73) size 161x20 [r=3 c=2 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (1,1) size 106x18
</span><del>-                text run at (1,1) width 106: &quot;(25, 16) (25, 12)&quot;
</del><ins>+                text run at (1,1) width 106: &quot;(25, 26) (25, 22)&quot;
</ins><span class="cx">             RenderTableCell {TD} at (392,71) size 135x24 [r=3 c=3 rs=1 cs=1]
</span><span class="cx">               RenderButton {INPUT} at (3,3) size 34x18 [bgcolor=#C0C0C0]
</span><span class="cx">                 RenderBlock (anonymous) at (8,2) size 18x13
</span><span class="lines">@@ -98,8 +98,8 @@
</span><span class="cx">                 RenderBlock (anonymous) at (4,2) size 10x13
</span><span class="cx">                   RenderImage {IMG} at (0,1) size 10x10
</span><span class="cx">             RenderTableCell {TD} at (231,100) size 161x20 [r=4 c=2 rs=1 cs=1]
</span><del>-              RenderText {#text} at (1,1) size 90x18
-                text run at (1,1) width 90: &quot;(17, 8) (17, 4)&quot;
</del><ins>+              RenderText {#text} at (1,1) size 106x18
+                text run at (1,1) width 106: &quot;(17, 18) (17, 14)&quot;
</ins><span class="cx">             RenderTableCell {TD} at (392,98) size 135x24 [r=4 c=3 rs=1 cs=1]
</span><span class="cx">               RenderButton {INPUT} at (3,3) size 34x18 [bgcolor=#C0C0C0]
</span><span class="cx">                 RenderBlock (anonymous) at (8,2) size 18x13
</span><span class="lines">@@ -118,7 +118,7 @@
</span><span class="cx">                   RenderImage {IMG} at (0,1) size 10x10
</span><span class="cx">             RenderTableCell {TD} at (231,124) size 161x20 [r=5 c=2 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (1,1) size 106x18
</span><del>-                text run at (1,1) width 106: &quot;(18, 16) (18, 12)&quot;
</del><ins>+                text run at (1,1) width 106: &quot;(18, 26) (18, 22)&quot;
</ins><span class="cx">             RenderTableCell {TD} at (392,122) size 135x24 [r=5 c=3 rs=1 cs=1]
</span><span class="cx">               RenderButton {INPUT} at (3,3) size 34x18 [bgcolor=#C0C0C0]
</span><span class="cx">                 RenderBlock (anonymous) at (8,2) size 18x13
</span><span class="lines">@@ -137,7 +137,7 @@
</span><span class="cx">                   RenderImage {IMG} at (0,1) size 10x10
</span><span class="cx">             RenderTableCell {TD} at (231,148) size 161x20 [r=6 c=2 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (1,1) size 106x18
</span><del>-                text run at (1,1) width 106: &quot;(19, 18) (19, 14)&quot;
</del><ins>+                text run at (1,1) width 106: &quot;(19, 28) (19, 24)&quot;
</ins><span class="cx">             RenderTableCell {TD} at (392,146) size 135x24 [r=6 c=3 rs=1 cs=1]
</span><span class="cx">               RenderButton {INPUT} at (3,3) size 34x18 [bgcolor=#C0C0C0]
</span><span class="cx">                 RenderBlock (anonymous) at (8,2) size 18x13
</span><span class="lines">@@ -156,7 +156,7 @@
</span><span class="cx">                   RenderImage {IMG} at (0,1) size 10x10
</span><span class="cx">             RenderTableCell {TD} at (231,190) size 161x20 [r=7 c=2 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (1,1) size 106x18
</span><del>-                text run at (1,1) width 106: &quot;(53, 44) (53, 40)&quot;
</del><ins>+                text run at (1,1) width 106: &quot;(53, 54) (53, 50)&quot;
</ins><span class="cx">             RenderTableCell {TD} at (392,188) size 135x24 [r=7 c=3 rs=1 cs=1]
</span><span class="cx">               RenderButton {INPUT} at (3,3) size 34x18 [bgcolor=#C0C0C0]
</span><span class="cx">                 RenderBlock (anonymous) at (8,2) size 18x13
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacmountainlionfastformsbasicbuttonsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/mac-mountainlion/fast/forms/basic-buttons-expected.txt (178077 => 178078)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac-mountainlion/fast/forms/basic-buttons-expected.txt        2015-01-08 02:04:26 UTC (rev 178077)
+++ trunk/LayoutTests/platform/mac-mountainlion/fast/forms/basic-buttons-expected.txt        2015-01-08 02:17:51 UTC (rev 178078)
</span><span class="lines">@@ -42,7 +42,7 @@
</span><span class="cx">                   RenderImage {IMG} at (0,1) size 10x10
</span><span class="cx">             RenderTableCell {TD} at (229,22) size 157x20 [r=1 c=2 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (1,1) size 104x18
</span><del>-                text run at (1,1) width 104: &quot;(18, 16) (18, 12)&quot;
</del><ins>+                text run at (1,1) width 104: &quot;(18, 26) (18, 22)&quot;
</ins><span class="cx">             RenderTableCell {TD} at (386,20) size 132x24 [r=1 c=3 rs=1 cs=1]
</span><span class="cx">               RenderButton {INPUT} at (3,3) size 34x18 [bgcolor=#C0C0C0]
</span><span class="cx">                 RenderBlock (anonymous) at (8,2) size 18x13
</span><span class="lines">@@ -60,8 +60,8 @@
</span><span class="cx">                 RenderBlock (anonymous) at (2,1) size 10x13
</span><span class="cx">                   RenderImage {IMG} at (0,1) size 10x10
</span><span class="cx">             RenderTableCell {TD} at (229,46) size 157x20 [r=2 c=2 rs=1 cs=1]
</span><del>-              RenderText {#text} at (1,1) size 88x18
-                text run at (1,1) width 88: &quot;(15, 4) (15, 0)&quot;
</del><ins>+              RenderText {#text} at (1,1) size 104x18
+                text run at (1,1) width 104: &quot;(15, 14) (15, 10)&quot;
</ins><span class="cx">             RenderTableCell {TD} at (386,44) size 132x24 [r=2 c=3 rs=1 cs=1]
</span><span class="cx">               RenderButton {INPUT} at (3,3) size 34x18 [bgcolor=#C0C0C0]
</span><span class="cx">                 RenderBlock (anonymous) at (8,2) size 18x13
</span><span class="lines">@@ -80,7 +80,7 @@
</span><span class="cx">                   RenderImage {IMG} at (0,1) size 10x10
</span><span class="cx">             RenderTableCell {TD} at (229,73) size 157x20 [r=3 c=2 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (1,1) size 104x18
</span><del>-                text run at (1,1) width 104: &quot;(25, 16) (25, 12)&quot;
</del><ins>+                text run at (1,1) width 104: &quot;(25, 26) (25, 22)&quot;
</ins><span class="cx">             RenderTableCell {TD} at (386,71) size 132x24 [r=3 c=3 rs=1 cs=1]
</span><span class="cx">               RenderButton {INPUT} at (3,3) size 34x18 [bgcolor=#C0C0C0]
</span><span class="cx">                 RenderBlock (anonymous) at (8,2) size 18x13
</span><span class="lines">@@ -98,8 +98,8 @@
</span><span class="cx">                 RenderBlock (anonymous) at (4,2) size 10x13
</span><span class="cx">                   RenderImage {IMG} at (0,1) size 10x10
</span><span class="cx">             RenderTableCell {TD} at (229,100) size 157x20 [r=4 c=2 rs=1 cs=1]
</span><del>-              RenderText {#text} at (1,1) size 88x18
-                text run at (1,1) width 88: &quot;(17, 8) (17, 4)&quot;
</del><ins>+              RenderText {#text} at (1,1) size 104x18
+                text run at (1,1) width 104: &quot;(17, 18) (17, 14)&quot;
</ins><span class="cx">             RenderTableCell {TD} at (386,98) size 132x24 [r=4 c=3 rs=1 cs=1]
</span><span class="cx">               RenderButton {INPUT} at (3,3) size 34x18 [bgcolor=#C0C0C0]
</span><span class="cx">                 RenderBlock (anonymous) at (8,2) size 18x13
</span><span class="lines">@@ -118,7 +118,7 @@
</span><span class="cx">                   RenderImage {IMG} at (0,1) size 10x10
</span><span class="cx">             RenderTableCell {TD} at (229,124) size 157x20 [r=5 c=2 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (1,1) size 104x18
</span><del>-                text run at (1,1) width 104: &quot;(18, 16) (18, 12)&quot;
</del><ins>+                text run at (1,1) width 104: &quot;(18, 26) (18, 22)&quot;
</ins><span class="cx">             RenderTableCell {TD} at (386,122) size 132x24 [r=5 c=3 rs=1 cs=1]
</span><span class="cx">               RenderButton {INPUT} at (3,3) size 34x18 [bgcolor=#C0C0C0]
</span><span class="cx">                 RenderBlock (anonymous) at (8,2) size 18x13
</span><span class="lines">@@ -137,7 +137,7 @@
</span><span class="cx">                   RenderImage {IMG} at (0,1) size 10x10
</span><span class="cx">             RenderTableCell {TD} at (229,148) size 157x20 [r=6 c=2 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (1,1) size 104x18
</span><del>-                text run at (1,1) width 104: &quot;(19, 18) (19, 14)&quot;
</del><ins>+                text run at (1,1) width 104: &quot;(19, 28) (19, 24)&quot;
</ins><span class="cx">             RenderTableCell {TD} at (386,146) size 132x24 [r=6 c=3 rs=1 cs=1]
</span><span class="cx">               RenderButton {INPUT} at (3,3) size 34x18 [bgcolor=#C0C0C0]
</span><span class="cx">                 RenderBlock (anonymous) at (8,2) size 18x13
</span><span class="lines">@@ -156,7 +156,7 @@
</span><span class="cx">                   RenderImage {IMG} at (0,1) size 10x10
</span><span class="cx">             RenderTableCell {TD} at (229,190) size 157x20 [r=7 c=2 rs=1 cs=1]
</span><span class="cx">               RenderText {#text} at (1,1) size 104x18
</span><del>-                text run at (1,1) width 104: &quot;(53, 44) (53, 40)&quot;
</del><ins>+                text run at (1,1) width 104: &quot;(53, 54) (53, 50)&quot;
</ins><span class="cx">             RenderTableCell {TD} at (386,188) size 132x24 [r=7 c=3 rs=1 cs=1]
</span><span class="cx">               RenderButton {INPUT} at (3,3) size 34x18 [bgcolor=#C0C0C0]
</span><span class="cx">                 RenderBlock (anonymous) at (8,2) size 18x13
</span></span></pre>
</div>
</div>

</body>
</html>