| Index: Source/core/layout/style/SVGLayoutStyle.cpp
|
| diff --git a/Source/core/layout/style/SVGLayoutStyle.cpp b/Source/core/layout/style/SVGLayoutStyle.cpp
|
| index b30edd99e133728ab211719c687c6984b8b58773..10eef96ce1a7e95c2e015297f2ce8a5d4afe9f44 100644
|
| --- a/Source/core/layout/style/SVGLayoutStyle.cpp
|
| +++ b/Source/core/layout/style/SVGLayoutStyle.cpp
|
| @@ -33,20 +33,20 @@ namespace blink {
|
|
|
| SVGLayoutStyle::SVGLayoutStyle()
|
| {
|
| - static SVGLayoutStyle* defaultStyle = new SVGLayoutStyle(CreateDefault);
|
| + static SVGLayoutStyle* initialStyle = new SVGLayoutStyle(CreateInitial);
|
|
|
| - fill = defaultStyle->fill;
|
| - stroke = defaultStyle->stroke;
|
| - stops = defaultStyle->stops;
|
| - misc = defaultStyle->misc;
|
| - inheritedResources = defaultStyle->inheritedResources;
|
| - layout = defaultStyle->layout;
|
| - resources = defaultStyle->resources;
|
| + fill = initialStyle->fill;
|
| + stroke = initialStyle->stroke;
|
| + stops = initialStyle->stops;
|
| + misc = initialStyle->misc;
|
| + inheritedResources = initialStyle->inheritedResources;
|
| + layout = initialStyle->layout;
|
| + resources = initialStyle->resources;
|
|
|
| setBitDefaults();
|
| }
|
|
|
| -SVGLayoutStyle::SVGLayoutStyle(CreateDefaultType)
|
| +SVGLayoutStyle::SVGLayoutStyle(CreateInitialType)
|
| {
|
| setBitDefaults();
|
|
|
|
|