summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/svg/SVGColor.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-06-10 16:52:27 +0100
committerSteve Block <steveblock@google.com>2011-06-14 01:14:02 +0100
commit54cdeeebc7adcbcd900e8b6a141a8cae27d9a631 (patch)
tree845b0d338b204a48560eca3b51b34cf92ed96840 /Source/WebCore/svg/SVGColor.cpp
parentd2c5226a647dc21d0c15267e09a3d19cf3e0d593 (diff)
downloadexternal_webkit-54cdeeebc7adcbcd900e8b6a141a8cae27d9a631.zip
external_webkit-54cdeeebc7adcbcd900e8b6a141a8cae27d9a631.tar.gz
external_webkit-54cdeeebc7adcbcd900e8b6a141a8cae27d9a631.tar.bz2
Merge WebKit at branches/chromium/742 r88085: Initial merge by git.
Change-Id: I0501b484b9528e31b0026e5ad64416dd6541cdde
Diffstat (limited to 'Source/WebCore/svg/SVGColor.cpp')
-rw-r--r--Source/WebCore/svg/SVGColor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebCore/svg/SVGColor.cpp b/Source/WebCore/svg/SVGColor.cpp
index 911d02f..b2f14a3 100644
--- a/Source/WebCore/svg/SVGColor.cpp
+++ b/Source/WebCore/svg/SVGColor.cpp
@@ -50,7 +50,7 @@ void SVGColor::setRGBColor(const String& rgbColor, ExceptionCode& ec)
m_color = color;
m_colorType = SVG_COLORTYPE_RGBCOLOR;
- setNeedsStyleRecalc();
+ // FIXME: A follow up patch will call valueChanged() here.
}
Color SVGColor::colorFromRGBColorString(const String& colorString)
@@ -75,7 +75,7 @@ void SVGColor::setRGBColorICCColor(const String& rgbColor, const String& iccColo
return;
m_colorType = SVG_COLORTYPE_RGBCOLOR_ICCCOLOR;
- setNeedsStyleRecalc();
+ // FIXME: A follow up patch will call valueChanged() here.
}
void SVGColor::setColor(unsigned short colorType, const String& rgbColor, const String& iccColor, ExceptionCode& ec)
@@ -115,7 +115,7 @@ void SVGColor::setColor(unsigned short colorType, const String& rgbColor, const
return;
}
- setNeedsStyleRecalc();
+ // FIXME: A follow up patch will call valueChanged() here.
m_colorType = type;
if (!requiresRGBColor) {
ASSERT(!requiresICCColor);