| Index: third_party/WebKit/Source/core/svg/SVGGElement.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/svg/SVGGElement.cpp b/third_party/WebKit/Source/core/svg/SVGGElement.cpp
 | 
| index e0efa8255825dbdb1b0f0a636624b19bbd6dfb1f..320935bf0fbb050557fb3459581e332c1899ea68 100644
 | 
| --- a/third_party/WebKit/Source/core/svg/SVGGElement.cpp
 | 
| +++ b/third_party/WebKit/Source/core/svg/SVGGElement.cpp
 | 
| @@ -39,7 +39,7 @@ LayoutObject* SVGGElement::createLayoutObject(const ComputedStyle& style)
 | 
|      // We still have to create layoutObjects for the <g> & <linearGradient> element, though the
 | 
|      // subtree may be hidden - we only want the resource layoutObjects to exist so they can be
 | 
|      // referenced from somewhere else.
 | 
| -    if (style.display() == NONE)
 | 
| +    if (style.display() == EDisplay::None)
 | 
|          return new LayoutSVGHiddenContainer(this);
 | 
|  
 | 
|      return new LayoutSVGTransformableContainer(this);
 | 
| 
 |