<!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>[173418] trunk</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/173418">173418</a></dd>
<dt>Author</dt> <dd>mmaxfield@apple.com</dd>
<dt>Date</dt> <dd>2014-09-08 19:56:24 -0700 (Mon, 08 Sep 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>REGRESSION (<a href="http://trac.webkit.org/projects/webkit/changeset/172153">r172153</a>): Text drawn with wrong color when second text shadow has zero offset and blur (breaks buttons at aws.amazon.com)
https://bugs.webkit.org/show_bug.cgi?id=136612

Reviewed by Darin Adler.

Source/WebCore:

<a href="http://trac.webkit.org/projects/webkit/changeset/172153">r172153</a> was fundamentally broken, and would restore graphics contexts that had never been saved. This patch
reimplements <a href="http://trac.webkit.org/projects/webkit/changeset/172153">r172153</a> by using &quot;continue&quot; to skip loop iterations instead of changing the internal logic of
the loop.

In addition, I have refactored InlineTextBox::applyShadowToGraphicsContext() to take an extra boolean
reference as an out parameter in order to make it obvious it if saved a graphics context that needs
to be restored. This should make it less likely to make these kinds of mistakes in the future.

Test: fast/text/empty-shadow-with-color.html

* rendering/InlineTextBox.cpp:
(WebCore::InlineTextBox::applyShadowToGraphicsContext): Add bool reference out param.
* rendering/InlineTextBox.h: Ditto.
* rendering/TextPainter.cpp:
(WebCore::isEmptyShadow): Change logic to not skip loop iterations on a null shadow.
(WebCore::paintTextWithShadows): Use continue to skip loop iterations for empty shadows. In addition,
use the out param in InlineTextBox::applyShadowToGraphicsContext().
* rendering/svg/SVGInlineTextBox.cpp:
(WebCore::SVGInlineTextBox::paintTextWithShadows): Update for new sigurature of
InlineTextBox::applyShadowToGraphicsContext().

LayoutTests:

Make sure that text is drawn with correct color when second text shadow has zero offset and blur

* fast/text/empty-shadow-with-color-expected.html: Added.
* fast/text/empty-shadow-with-color.html: Added.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCorerenderingInlineTextBoxcpp">trunk/Source/WebCore/rendering/InlineTextBox.cpp</a></li>
<li><a href="#trunkSourceWebCorerenderingInlineTextBoxh">trunk/Source/WebCore/rendering/InlineTextBox.h</a></li>
<li><a href="#trunkSourceWebCorerenderingTextPaintercpp">trunk/Source/WebCore/rendering/TextPainter.cpp</a></li>
<li><a href="#trunkSourceWebCorerenderingsvgSVGInlineTextBoxcpp">trunk/Source/WebCore/rendering/svg/SVGInlineTextBox.cpp</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsfasttextemptyshadowwithcolorexpectedhtml">trunk/LayoutTests/fast/text/empty-shadow-with-color-expected.html</a></li>
<li><a href="#trunkLayoutTestsfasttextemptyshadowwithcolorhtml">trunk/LayoutTests/fast/text/empty-shadow-with-color.html</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (173417 => 173418)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2014-09-09 02:31:21 UTC (rev 173417)
+++ trunk/LayoutTests/ChangeLog        2014-09-09 02:56:24 UTC (rev 173418)
</span><span class="lines">@@ -1,3 +1,15 @@
</span><ins>+2014-09-08  Myles C. Maxfield  &lt;mmaxfield@apple.com&gt;
+
+        REGRESSION (r172153): Text drawn with wrong color when second text shadow has zero offset and blur (breaks buttons at aws.amazon.com)
+        https://bugs.webkit.org/show_bug.cgi?id=136612
+
+        Reviewed by Darin Adler.
+
+        Make sure that text is drawn with correct color when second text shadow has zero offset and blur
+
+        * fast/text/empty-shadow-with-color-expected.html: Added.
+        * fast/text/empty-shadow-with-color.html: Added.
+
</ins><span class="cx"> 2014-09-08  Roger Fong  &lt;roger_fong@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Unreviewed. More webgl conformance test gardening.
</span></span></pre></div>
<a id="trunkLayoutTestsfasttextemptyshadowwithcolorexpectedhtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/text/empty-shadow-with-color-expected.html (0 => 173418)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/text/empty-shadow-with-color-expected.html                                (rev 0)
+++ trunk/LayoutTests/fast/text/empty-shadow-with-color-expected.html        2014-09-09 02:56:24 UTC (rev 173418)
</span><span class="lines">@@ -0,0 +1,15 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;style&gt;
+#test {
+    color: green;
+    font-size: 16px;
+}
+&lt;/style&gt;
+&lt;/head&gt;
+&lt;body&gt;
+This test makes sure that text drawn with an empty shadow is colored correctly. It passes if the following text is green.
+&lt;div id=&quot;test&quot;&gt;This should be green.&lt;/div&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkLayoutTestsfasttextemptyshadowwithcolorhtml"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/fast/text/empty-shadow-with-color.html (0 => 173418)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/text/empty-shadow-with-color.html                                (rev 0)
+++ trunk/LayoutTests/fast/text/empty-shadow-with-color.html        2014-09-09 02:56:24 UTC (rev 173418)
</span><span class="lines">@@ -0,0 +1,17 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;style&gt;
+#test {
+    color: green;
+    font-size: 16px;
+    text-shadow: red 20px 20px, red 0px 0px;
+    overflow: hidden;
+}
+&lt;/style&gt;
+&lt;/head&gt;
+&lt;body&gt;
+This test makes sure that text drawn with an empty shadow is colored correctly. It passes if the following text is green.
+&lt;div id=&quot;test&quot;&gt;This should be green.&lt;/div&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (173417 => 173418)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2014-09-09 02:31:21 UTC (rev 173417)
+++ trunk/Source/WebCore/ChangeLog        2014-09-09 02:56:24 UTC (rev 173418)
</span><span class="lines">@@ -1,3 +1,31 @@
</span><ins>+2014-09-08  Myles C. Maxfield  &lt;mmaxfield@apple.com&gt;
+
+        REGRESSION (r172153): Text drawn with wrong color when second text shadow has zero offset and blur (breaks buttons at aws.amazon.com)
+        https://bugs.webkit.org/show_bug.cgi?id=136612
+
+        Reviewed by Darin Adler.
+
+        r172153 was fundamentally broken, and would restore graphics contexts that had never been saved. This patch
+        reimplements r172153 by using &quot;continue&quot; to skip loop iterations instead of changing the internal logic of
+        the loop.
+
+        In addition, I have refactored InlineTextBox::applyShadowToGraphicsContext() to take an extra boolean
+        reference as an out parameter in order to make it obvious it if saved a graphics context that needs
+        to be restored. This should make it less likely to make these kinds of mistakes in the future.
+
+        Test: fast/text/empty-shadow-with-color.html
+
+        * rendering/InlineTextBox.cpp:
+        (WebCore::InlineTextBox::applyShadowToGraphicsContext): Add bool reference out param.
+        * rendering/InlineTextBox.h: Ditto.
+        * rendering/TextPainter.cpp:
+        (WebCore::isEmptyShadow): Change logic to not skip loop iterations on a null shadow.
+        (WebCore::paintTextWithShadows): Use continue to skip loop iterations for empty shadows. In addition,
+        use the out param in InlineTextBox::applyShadowToGraphicsContext().
+        * rendering/svg/SVGInlineTextBox.cpp:
+        (WebCore::SVGInlineTextBox::paintTextWithShadows): Update for new sigurature of
+        InlineTextBox::applyShadowToGraphicsContext().
+
</ins><span class="cx"> 2014-09-08  Commit Queue  &lt;commit-queue@webkit.org&gt;
</span><span class="cx"> 
</span><span class="cx">         Unreviewed, rolling out r173402.
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingInlineTextBoxcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/InlineTextBox.cpp (173417 => 173418)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/InlineTextBox.cpp        2014-09-09 02:31:21 UTC (rev 173417)
+++ trunk/Source/WebCore/rendering/InlineTextBox.cpp        2014-09-09 02:56:24 UTC (rev 173418)
</span><span class="lines">@@ -424,7 +424,7 @@
</span><span class="cx">     return false;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-FloatSize InlineTextBox::applyShadowToGraphicsContext(GraphicsContext* context, const ShadowData* shadow, const FloatRect&amp; textRect, bool stroked, bool opaque, bool horizontal)
</del><ins>+FloatSize InlineTextBox::applyShadowToGraphicsContext(GraphicsContext* context, const ShadowData* shadow, const FloatRect&amp; textRect, bool stroked, bool opaque, bool horizontal, bool&amp; didSaveContext)
</ins><span class="cx"> {
</span><span class="cx">     if (!shadow)
</span><span class="cx">         return FloatSize();
</span><span class="lines">@@ -445,6 +445,7 @@
</span><span class="cx"> 
</span><span class="cx">         extraOffset = FloatSize(0, 2 * textRect.height() + std::max(0.0f, shadowOffset.height()) + shadowRadius);
</span><span class="cx">         shadowOffset -= extraOffset;
</span><ins>+        didSaveContext = true;
</ins><span class="cx">     }
</span><span class="cx"> 
</span><span class="cx">     context-&gt;setShadow(shadowOffset, shadowRadius, shadowColor, context-&gt;fillColorSpace());
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingInlineTextBoxh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/InlineTextBox.h (173417 => 173418)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/InlineTextBox.h        2014-09-09 02:31:21 UTC (rev 173417)
+++ trunk/Source/WebCore/rendering/InlineTextBox.h        2014-09-09 02:56:24 UTC (rev 173418)
</span><span class="lines">@@ -155,7 +155,7 @@
</span><span class="cx">     virtual float positionForOffset(int offset) const;
</span><span class="cx"> 
</span><span class="cx">     // Needs to be public, so the static paintTextWithShadows() function can use it.
</span><del>-    static FloatSize applyShadowToGraphicsContext(GraphicsContext*, const ShadowData*, const FloatRect&amp; textRect, bool stroked, bool opaque, bool horizontal);
</del><ins>+    static FloatSize applyShadowToGraphicsContext(GraphicsContext*, const ShadowData*, const FloatRect&amp; textRect, bool stroked, bool opaque, bool horizontal, bool&amp; didSaveContext);
</ins><span class="cx"> 
</span><span class="cx"> protected:
</span><span class="cx">     void paintCompositionBackground(GraphicsContext*, const FloatPoint&amp; boxOrigin, const RenderStyle&amp;, const Font&amp;, int startPos, int endPos);
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingTextPaintercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/TextPainter.cpp (173417 => 173418)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/TextPainter.cpp        2014-09-09 02:31:21 UTC (rev 173417)
+++ trunk/Source/WebCore/rendering/TextPainter.cpp        2014-09-09 02:56:24 UTC (rev 173418)
</span><span class="lines">@@ -63,7 +63,7 @@
</span><span class="cx"> static bool isEmptyShadow(const ShadowData* shadow)
</span><span class="cx"> {
</span><span class="cx">     if (!shadow)
</span><del>-        return true;
</del><ins>+        return false;
</ins><span class="cx">     return shadow-&gt;location() == IntPoint() &amp;&amp; !shadow-&gt;radius();
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="lines">@@ -78,10 +78,15 @@
</span><span class="cx">         context-&gt;setFillColor(Color::black, fillColorSpace);
</span><span class="cx"> 
</span><span class="cx">     do {
</span><ins>+        if (isEmptyShadow(shadow)) {
+            shadow = shadow-&gt;next();
+            continue;
+        }
+
</ins><span class="cx">         IntSize extraOffset;
</span><del>-        bool shadowIsEmpty = isEmptyShadow(shadow);
-        if (!shadowIsEmpty)
-            extraOffset = roundedIntSize(InlineTextBox::applyShadowToGraphicsContext(context, shadow, boxRect, stroked, opaque, horizontal));
</del><ins>+        bool didSaveContext = false;
+        if (shadow)
+            extraOffset = roundedIntSize(InlineTextBox::applyShadowToGraphicsContext(context, shadow, boxRect, stroked, opaque, horizontal, didSaveContext));
</ins><span class="cx">         else if (!opaque)
</span><span class="cx">             context-&gt;setFillColor(fillColor, fillColorSpace);
</span><span class="cx"> 
</span><span class="lines">@@ -97,9 +102,9 @@
</span><span class="cx">         if (!shadow)
</span><span class="cx">             break;
</span><span class="cx"> 
</span><del>-        if (shadow-&gt;next() || stroked || !opaque)
</del><ins>+        if (didSaveContext)
</ins><span class="cx">             context-&gt;restore();
</span><del>-        else if (!shadowIsEmpty)
</del><ins>+        else
</ins><span class="cx">             context-&gt;clearShadow();
</span><span class="cx"> 
</span><span class="cx">         shadow = shadow-&gt;next();
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingsvgSVGInlineTextBoxcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/svg/SVGInlineTextBox.cpp (173417 => 173418)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/svg/SVGInlineTextBox.cpp        2014-09-09 02:31:21 UTC (rev 173417)
+++ trunk/Source/WebCore/rendering/svg/SVGInlineTextBox.cpp        2014-09-09 02:56:24 UTC (rev 173418)
</span><span class="lines">@@ -595,8 +595,9 @@
</span><span class="cx">             break;
</span><span class="cx"> 
</span><span class="cx">         FloatSize extraOffset;
</span><ins>+        bool didSaveContext = false;
</ins><span class="cx">         if (shadow)
</span><del>-            extraOffset = applyShadowToGraphicsContext(context, shadow, shadowRect, false /* stroked */, true /* opaque */, true /* horizontal */);
</del><ins>+            extraOffset = applyShadowToGraphicsContext(context, shadow, shadowRect, false /* stroked */, true /* opaque */, true /* horizontal */, didSaveContext);
</ins><span class="cx"> 
</span><span class="cx">         context-&gt;save();
</span><span class="cx">         context-&gt;scale(FloatSize(1 / scalingFactor, 1 / scalingFactor));
</span><span class="lines">@@ -606,7 +607,7 @@
</span><span class="cx">         context-&gt;restore();
</span><span class="cx"> 
</span><span class="cx">         if (shadow) {
</span><del>-            if (shadow-&gt;next())
</del><ins>+            if (didSaveContext)
</ins><span class="cx">                 context-&gt;restore();
</span><span class="cx">             else
</span><span class="cx">                 context-&gt;clearShadow();
</span></span></pre>
</div>
</div>

</body>
</html>