| Index: Source/core/rendering/style/SVGRenderStyle.cpp
|
| diff --git a/Source/core/rendering/style/SVGRenderStyle.cpp b/Source/core/rendering/style/SVGRenderStyle.cpp
|
| index 6e796fd9ab0fa73ce1f71c962e6d07ff882f40fc..85523778de5ac1ad8190c6d99ceb335d6726f164 100644
|
| --- a/Source/core/rendering/style/SVGRenderStyle.cpp
|
| +++ b/Source/core/rendering/style/SVGRenderStyle.cpp
|
| @@ -227,4 +227,11 @@ StyleDifference SVGRenderStyle::diff(const SVGRenderStyle* other) const
|
| return StyleDifferenceEqual;
|
| }
|
|
|
| +EPaintOrderType SVGRenderStyle::paintOrderType(unsigned index) const
|
| +{
|
| + ASSERT(index < ((1 << kPaintOrderBitwidth)-1));
|
| + unsigned pt = (paintOrder() >> (kPaintOrderBitwidth*index)) & ((1u << kPaintOrderBitwidth) - 1);
|
| + return (EPaintOrderType)pt;
|
| +}
|
| +
|
| }
|
|
|