| Index: Source/core/rendering/RenderView.h
|
| diff --git a/Source/core/rendering/RenderView.h b/Source/core/rendering/RenderView.h
|
| index c437281e8d6067de67037fa106e29677695406ca..3592378f9cd91bafdf8b8d2a427e5eb1415f78d2 100644
|
| --- a/Source/core/rendering/RenderView.h
|
| +++ b/Source/core/rendering/RenderView.h
|
| @@ -143,9 +143,8 @@ public:
|
|
|
| bool canUseLayoutStateForContainer(const RenderObject* repaintContainer) const
|
| {
|
| - // FIXME: Repaint container should never be null. crbug.com/363699
|
| // FIXME: LayoutState should be enabled for other repaint containers than the RenderView. crbug.com/363834
|
| - return layoutStateEnabled() && (!repaintContainer || repaintContainer == this);
|
| + return layoutStateEnabled() && (repaintContainer == this);
|
| }
|
|
|
| virtual void updateHitTestResult(HitTestResult&, const LayoutPoint&) OVERRIDE;
|
|
|